Files
admin_hura_8/data/order/home.php

18 lines
281 B
PHP
Raw Normal View History

2024-01-20 09:29:38 +07:00
<?php
2024-01-26 10:41:49 +07:00
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;
}