fix: [metaTemplate:view] Repair `Field` child
parent
66572a788f
commit
7a16c2c792
|
@ -10,12 +10,6 @@ use Cake\ORM\TableRegistry;
|
|||
use Cake\Utility\Inflector;
|
||||
use Cake\Database\Expression\QueryExpression;
|
||||
|
||||
use MetaFieldsTypes\TextType;
|
||||
use MetaFieldsTypes\IPv4Type;
|
||||
use MetaFieldsTypes\IPv6Type;
|
||||
require_once(APP . 'Lib' . DS . 'default' . DS . 'meta_fields_types' . DS . 'TextType.php');
|
||||
require_once(APP . 'Lib' . DS . 'default' . DS . 'meta_fields_types' . DS . 'IPv4Type.php');
|
||||
require_once(APP . 'Lib' . DS . 'default' . DS . 'meta_fields_types' . DS . 'IPv6Type.php');
|
||||
|
||||
class MetaFieldsBehavior extends Behavior
|
||||
{
|
||||
|
|
|
@ -9,6 +9,9 @@ use Cake\Validation\Validator;
|
|||
use MetaFieldsTypes\TextType;
|
||||
use MetaFieldsTypes\IPv4Type;
|
||||
use MetaFieldsTypes\IPv6Type;
|
||||
require_once(APP . 'Lib' . DS . 'default' . DS . 'meta_fields_types' . DS . 'TextType.php');
|
||||
require_once(APP . 'Lib' . DS . 'default' . DS . 'meta_fields_types' . DS . 'IPv4Type.php');
|
||||
require_once(APP . 'Lib' . DS . 'default' . DS . 'meta_fields_types' . DS . 'IPv6Type.php');
|
||||
|
||||
class MetaTemplateFieldsTable extends AppTable
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue