Kohana(从 3.2 开始)模块和路由优先级的一些背景知识:
Kohana::modules
模块按调用顺序进行初始化。根据所需的路由优先级,这一点很重要。在您的示例中,Kohana::modules(array_merge(array($module_name=>$directory), Kohana::modules()));
已放置的任何模块Kohana::modules()
都已初始化。即使您将新模块合并到列表的开头,模块也会在Kohana::modules()
调用时被初始化。如果您查看“system/classes/kohana/core.php”第 565 行,您会注意到“init.php”需要一次(如果存在于模块中)。
- 路由按照添加的顺序进行匹配。如果使用相同的路由名称,它们也会被覆盖。
总之,在 Kohana 中没有办法将 Route 推送到列表的开头。当然,保证首先加载有问题的模块会解决您的问题(只要以后不覆盖路由)。如果您可以透明地扩展 Route,如果稍后通过将路由添加到堆栈的开头来加载模块,则可以通过以下方式完成此操作:
GitHub Gist(包括单元测试):https ://gist.github.com/3148737
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Route transparently extended. Place in "classes" directory of Kohana 3+ application or module.
*/
class Route extends Kohana_Route
{
/**
* Prepend Route to beginning of stack. If name already exists further in the stack, it is
* removed.
*
* Route::prepend('default', '(<controller>(/<action>(/<id>)))')
* ->defaults(array(
* 'controller' => 'welcome'
* ));
*
* @static
* @access public
* @param string route name
* @param string URI pattern
* @param array regex patterns for route keys
* @return Route
*/
public static function prepend($name, $uri_callback = NULL, $regex = NULL)
{
// Ensure entry does not already exist so it can be added to the beginning of the stack
if (isset(Route::$_routes[$name]))
{
unset(Route::$_routes[$name]);
}
// Create reference
Route::$_routes = array_merge(array($name => NULL), Route::$_routes);
// Overwrite reference
return Route::$_routes[$name] = new Route($uri_callback, $regex);
}
}