mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-21 15:00:16 +00:00
22 lines
465 B
PHP
22 lines
465 B
PHP
<?php
|
|
|
|
namespace core\addon;
|
|
|
|
|
|
class Menu extends BaseAddon
|
|
{
|
|
/**
|
|
* 加载菜单
|
|
* @param array $data //传入插件,应用类型
|
|
* @return array|mixed
|
|
*/
|
|
public function load(array $data):array
|
|
{
|
|
$menu_path = $this->getAddonEnumPath($data['addon'])."menu".DIRECTORY_SEPARATOR. $data['app_type']. ".php";
|
|
if(is_file($menu_path))
|
|
{
|
|
return include $menu_path;
|
|
}
|
|
return [];
|
|
}
|
|
} |