33 lines
540 B
PHP
33 lines
540 B
PHP
<?php
|
|
|
|
return array(
|
|
'type' => 'MySQLTable',
|
|
'name' => '_MySQLTable',
|
|
'extends' => '',
|
|
'children' => array(
|
|
'Service' => array(
|
|
'array' => array(
|
|
'type' => 'ArrayService',
|
|
),
|
|
'crud' => array(
|
|
'type' => 'MySQLServiceCRUD',
|
|
),
|
|
),
|
|
'View' => array(
|
|
'listEdit' => array(
|
|
'type' => 'View',
|
|
'file' => 'views/listEdit.html',
|
|
'list' => '*',
|
|
'edit' => '*',
|
|
),
|
|
'admin' => array(
|
|
'type' => 'View',
|
|
'file' => 'views/listEdit.html',
|
|
'list' => '*',
|
|
'edit' => '*',
|
|
),
|
|
),
|
|
),
|
|
)
|
|
|
|
?>
|