18 lines
281 B
PHP
18 lines
281 B
PHP
<?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;
|
|
}
|