Вход Регистрация
Файл: library/XenForo/Route/Prefix/Forums.php
Строк: 75
<?php

/**
 * Route prefix handler for forums in the public system.
 *
 * @package XenForo_Nodes
 */
class XenForo_Route_Prefix_Forums implements XenForo_Route_Interface
{
    
/**
     * Match a specific route for an already matched prefix.
     *
     * @see XenForo_Route_Interface::match()
     */
    
public function match($routePathZend_Controller_Request_Http $requestXenForo_Router $router)
    {
        
$action $router->resolveActionWithIntegerOrStringParam($routePath$request'node_id''node_name');
        
$action $router->resolveActionAsPageNumber($action$request);
        return 
$router->getRouteMatch('XenForo_ControllerPublic_Forum'$action'forums');
    }

    
/**
     * Method to build a link to the specified page/action with the provided
     * data and params.
     *
     * @see XenForo_Route_BuilderInterface
     */
    
public function buildLink($originalPrefix$outputPrefix$action$extension$data, array &$extraParams)
    {
        
$action XenForo_Link::getPageNumberAsAction($action$extraParams);

        if (
is_array($data) && !empty($data['node_name']))
        {
            return 
XenForo_Link::buildBasicLinkWithStringParam($outputPrefix$action$extension$data'node_name');
        }
        else
        {
            
// for situations such as an array with thread and node info
            
if (isset($data['node_title']))
            {
                
$data['title'] = $data['node_title'];
            }

            return 
XenForo_Link::buildBasicLinkWithIntegerParam($outputPrefix$action$extension$data'node_id''title');
        }
    }
}
Онлайн: 1
Реклама