mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 07:04:24 +00:00
12 lines
334 B
PHP
12 lines
334 B
PHP
<?php
|
|
|
|
use ba\Filesystem;
|
|
|
|
if (!function_exists('get_controller_list')) {
|
|
function get_controller_list($app = 'admin'): array
|
|
{
|
|
$controllerDir = root_path() . 'app' . DIRECTORY_SEPARATOR . $app . DIRECTORY_SEPARATOR . 'controller' . DIRECTORY_SEPARATOR;
|
|
return Filesystem::getDirFiles($controllerDir);
|
|
}
|
|
}
|