This commit is contained in:
2024-01-26 10:41:49 +07:00
parent b5a10581a0
commit 5f080f0be6
7 changed files with 218 additions and 5 deletions

View File

@@ -1 +1,17 @@
<?php
return _get_order_list();
// helpers
function _get_order_list() {
$main_items = [
'detail_new',
];
$menu_list = [];
foreach ($main_items as $item) {
$menu_list[$item] = include_once __DIR__."/".$item.".php";
}
return $menu_list;
}