我在路径“app/classes”中有一个名为“Helper.php”的类。而且我在“app/config”中有一个配置文件“custom.php”。
问题是,当我调用配置文件时,它返回 FALSE。
class Helper {
public static function actions_header ($ractive) {
return Config::load('custom');
}
}
自定义配置文件
return array(
'sidebar_entities' => array (
array(
'name' => 'Dashboard',
'icon' => 'icon-dashboard',
'url' => 'dashboard'
),
array(
'name' => 'Álbumes',
'icon' => 'icon-music',
'url' => 'albums'
)
)
);