[TOOLS] Update autocode, allow for abstract entity classes, derive namespace from file rather than using 'get_declared_classes'
This commit is contained in:
parent
e3bfb1ebc5
commit
4736146b80
|
@ -20,26 +20,23 @@ const types = [
|
|||
'text' => 'string',
|
||||
'varchar' => 'string',
|
||||
'phone_number' => 'PhoneNumber',
|
||||
'float' => 'float', // TODO REMOVE THIS
|
||||
];
|
||||
|
||||
$files = array_merge(glob(ROOT . '/src/Entity/*.php'),
|
||||
array_merge(glob(ROOT . '/components/*/Entity/*.php'),
|
||||
glob(ROOT . '/plugins/*/Entity/*.php')));
|
||||
|
||||
$classes = [];
|
||||
$nullable_no_defaults_warning = [];
|
||||
|
||||
foreach ($files as $file) {
|
||||
|
||||
require_once $file;
|
||||
|
||||
$declared = get_declared_classes();
|
||||
foreach ($declared as $dc) {
|
||||
if (preg_match('/(App|(Component|Plugin)\\\\[^\\\\]+)\\\\Entity/', $dc) && !in_array($dc, $classes)) {
|
||||
$class = $dc;
|
||||
$classes[] = $class;
|
||||
break;
|
||||
}
|
||||
$class = str_replace(['/', 'src', 'components', 'plugins'], ['\\', 'App', 'Component', 'Plugin'], substr($file, strlen(ROOT) + 1, -4));
|
||||
|
||||
if (!method_exists($class, 'schemaDef')) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$no_ns_class = preg_replace('/.*?\\\\/', '', $class);
|
Loading…
Reference in New Issue
Block a user