如何删除燃料cms中的默认模块

How remove default module in fuel cms

I want to remove all the module in the red box.

我使用管理员登录名登录,这是fuel cms 提供的默认登录名。 如何删除管理员登录时提供的默认模块?

删除不是一个好的选择,您可以隐藏它们

要隐藏转到

fuel/application/config/MY_fuel_modules.php

并为每个要隐藏的模块添加一行,如下所示。

$config['module_overwrites']['module_name']['hidden'] = TRUE;

Example:

$config['module_overwrites']['pages']['hidden'] = TRUE; //to hide page module
$config['module_overwrites']['assets']['hidden'] = TRUE; //to hide assets module