buildadmin/app/admin/common.php

12 lines
334 B
PHP
Raw Normal View History

<?php
2022-04-04 04:42:42 +00:00
use ba\Filesystem;
2022-04-04 04:42:42 +00:00
2022-04-03 04:38:25 +00:00
if (!function_exists('get_controller_list')) {
function get_controller_list($app = 'admin'): array
2022-04-03 04:38:25 +00:00
{
$controllerDir = root_path() . 'app' . DIRECTORY_SEPARATOR . $app . DIRECTORY_SEPARATOR . 'controller' . DIRECTORY_SEPARATOR;
return Filesystem::getDirFiles($controllerDir);
2022-04-03 04:38:25 +00:00
}
}