Add phive back in for static tools like phpunit instead of using the composer package

This commit is contained in:
Clemens Schwaighofer
2024-12-27 09:32:54 +09:00
parent ce1c72a0bc
commit c778a4eb81
5 changed files with 62 additions and 21 deletions

View File

@@ -29,15 +29,17 @@ $table_arrays = [];
$table_arrays[\CoreLibs\Get\System::getPageName(1)] = [
// form fields mtaching up with db fields
'table_array' => [
'foo',
'bar'
],
// laod query
'load_query' => '',
'load_query' => 'SELECT uuid_nr, foo, bar FROM test',
// database table to load from
'table_name' => '',
'table_name' => 'test',
// for load dro pdown, format output
'show_fields' => [
[
'name' => 'name'
'name' => 'foo'
],
[
'name' => 'enabled',