是否可以覆盖Kohana_Core?
我想为小部件添加另一条路径(它们与模块不同)所以我必须将主题添加到bootstrap.php中:
Kohana::Widget(array());
我不想编辑Kohana_Core类(system / kohana / Core.php),只是覆盖它。
我尝试将一个名为Core.php(Class Core extends Kohana_Core
)的新文件添加到我的APPPATH中,但没办法。
我使用Kohana 3.3
任何想法?
答案 0 :(得分:1)
得到它!
只需将Kohana.php而不是Core.php添加到APPPATH
中Class Kohana extends Koahan_Core
{
public static function Widget($widgets)
{
// Do something
}
}