Файл: library/XenForo/Route/PrefixAdmin/Stats.php
Строк: 24
<?php
/**
* Route prefix handler for the stats section of the admin control panel.
*
* @package XenForo_Stats
*/
class XenForo_Route_PrefixAdmin_Stats 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_Stats', $routePath, 'stats');
}
}