Файл: library/XenForo/Route/PrefixAdmin/Search.php
Строк: 24
<?php
/**
* Route prefix handler for the control panel search.
*
* @package XenForo_Index
*/
class XenForo_Route_PrefixAdmin_Search implements XenForo_Route_Interface
{
/**
* Match a specific route for an already matched prefix.
*
* @see XenForo_Route_Interface::match()
*/
public function match($routePath, Zend_Controller_Request_Http $request, XenForo_Router $router)
{
return $router->getRouteMatch('XenForo_ControllerAdmin_Search', 'index', 'setup');
}
}