I want to remove all the module in the red box.
我使用admin login登录,这是由fuel cms给出的默认登录。 如何删除管理员登录中提供的默认模块?
答案 0 :(得分:0)
删除不是一个好的选择,而是可以将其隐藏
要隐藏,请访问
fuel/application/config/MY_fuel_modules.php
,然后为要隐藏的每个模块添加一行,如下所示。
$config['module_overwrites']['module_name']['hidden'] = TRUE;
示例:
$config['module_overwrites']['pages']['hidden'] = TRUE; //to hide page module
$config['module_overwrites']['assets']['hidden'] = TRUE; //to hide assets module