2022-02-20 22:42:48 +00:00
|
|
|
<?php
|
2022-04-04 04:42:42 +00:00
|
|
|
|
2023-06-24 18:35:30 +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')) {
|
2022-11-05 17:20:24 +00:00
|
|
|
function get_controller_list($app = 'admin'): array
|
2022-04-03 04:38:25 +00:00
|
|
|
{
|
2022-11-05 17:20:24 +00:00
|
|
|
$controllerDir = root_path() . 'app' . DIRECTORY_SEPARATOR . $app . DIRECTORY_SEPARATOR . 'controller' . DIRECTORY_SEPARATOR;
|
2023-06-24 18:35:30 +00:00
|
|
|
return Filesystem::getDirFiles($controllerDir);
|
2022-04-03 04:38:25 +00:00
|
|
|
}
|
|
|
|
}
|