覆盖Kohana_Core

时间:2014-03-21 12:32:46

标签: php kohana overwrite

是否可以覆盖Kohana_Core?

我想为小部件添加另一条路径(它们与模块不同)所以我必须将主题添加到bootstrap.php中:

Kohana::Widget(array());

我不想编辑Kohana_Core类(system / kohana / Core.php),只是覆盖它。

我尝试将一个名为Core.php(Class Core extends Kohana_Core)的新文件添加到我的APPPATH中,但没办法。

我使用Kohana 3.3

任何想法?

1 个答案:

答案 0 :(得分:1)

得到它!

只需将Kohana.php而不是Core.php添加到APPPATH

Class Kohana extends Koahan_Core
{
   public static function Widget($widgets)
   {
    // Do something
   }
}