21 lines
302 B
PHP
21 lines
302 B
PHP
<?php
|
|
/**
|
|
* Checkout Field - City
|
|
*
|
|
* @author ThemeHiGH
|
|
* @category Admin
|
|
*/
|
|
|
|
if(!defined('ABSPATH')){ exit; }
|
|
|
|
if(!class_exists('WCFE_Checkout_Field_City')):
|
|
|
|
class WCFE_Checkout_Field_City extends WCFE_Checkout_Field{
|
|
|
|
public function __construct() {
|
|
$this->type = 'city';
|
|
}
|
|
|
|
}
|
|
|
|
endif; |