Файл: IPBMafia.ru_IPB_3.4.6_Final_Rus _Nulled/board/upload/admin/applications/members/extensions/furlTemplatesID.php
Строк: 83
<?php
/**
* <pre>
* Invision Power Services
* IP.Board v3.4.5
* Sets up SEO templates
* Last Updated: $Date: 2013-02-04 18:48:34 -0500 (Mon, 04 Feb 2013) $
* </pre>
*
* @author $Author: bfarber $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/company/standards.php#license
* @package IP.Board
* @subpackage Members
* @link http://www.invisionpower.com
* @since 20th February 2002
* @version $Rev: 11934 $
*
*/
if ( ! defined( 'IN_IPB' ) )
{
print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.";
exit();
}
/**
* SEO templates
*
* 'allowRedirect' is a flag to tell IP.Board whether to check the incoming link and if not formatted correctly, redirect the correct one
*
* OUT FORMAT REGEX:
* First array element is a regex to run to see if we've a match for the URL
* The second array element is the template to use the results of the parenthesis capture
*
* Special variable #{__title__} is replaced with the $title data passed to output->formatUrl( $url, $title)
*
* IMPORTANT: Remember that when these regex are used, the output has not been fully parsed so you will get:
* showuser={$data['member_id']} NOT showuser=1 so do not try and match numerics only!
*
* IN FORMAT REGEX
*
* This allows the registry to piece back together a URL based on the template regex
* So, for example: "/user/(d+?)/", 'matches' => array( array( 'showuser' => '$1' ) )tells IP.Board to populate 'showuser' with the result
* of the parenthesis capture #1
*/
$_SEOTEMPLATES = array(
'showuser' => array( 'app' => 'members',
'allowRedirect' => 1,
'out' => array( '#showuser=(.+?)((?:&|&)f=(.+?))?(&|$)#i', 'user/$1/$2$4' ),
'in' => array( 'regex' => "#^/user/(d+?)(?:-|/|$)#i",
'matches' => array( array( 'showuser', '$1' ) ) ) ),
'members_status_legacy' => array( 'app' => 'members',
'allowRedirect' => 0,
'out' => array( '#app=xxxxx(?:&|&)module=profile(?:&|&)section=status(?:&|&)type=single(&|$)#i', 'statuses/user/#{__title-0__}/$1' ),
'newTemplate' => 'members_status_single',
'in' => array( 'regex' => "#^/statuses/id/(d+?)(/|$|?)#i",
'matches' => array( array( 'app' , 'members' ),
array( 'module' , 'profile' ),
array( 'section', 'status' ),
array( 'type' , 'single' ),
array( 'status_id', '$1' ) ) ) ),
'members_status_single' => array( 'app' => 'members',
'allowRedirect' => 0,
'out' => array( '#app=members(?:&|&)module=profile(?:&|&)section=status(?:&|&)type=single(&|$)#i', 'statuses/user/#{__title-0__}/$1' ),
'in' => array( 'regex' => "#^/statuses/user/([^/]+?)/{__varBlock__}status_id#i",
'matches' => array( array( 'app' , 'members' ),
array( 'module' , 'profile' ),
array( 'section', 'status' ),
array( 'type' , 'single' ) ) ) ),
'members_status_member_all' => array( 'app' => 'members',
'allowRedirect' => 0,
'out' => array( '#app=members(?:&|&)module=profile(?:&|&)section=status(?:&|&)type=memberall(?:&|&)member_id=d+?(&|$)#i', 'statuses/user/#{__title-0__}/$1' ),
'in' => array( 'regex' => "#^/statuses/user/(d+?)(?:-([^/]+?))?/(?!#{__varBlock__}status_id)#i",
'matches' => array( array( 'app' , 'members' ),
array( 'module' , 'profile' ),
array( 'section' , 'status' ),
array( 'member_id' , '$1' ) ) ) ),
'members_status_friends'=> array( 'app' => 'members',
'allowRedirect' => 0,
'out' => array( '#app=members(?:&|&)module=profile(?:&|&)section=status(?:&|&)type=friends(&|$)#i', 'statuses/friends/$2' ),
'in' => array( 'regex' => "#^/statuses/friends#i",
'matches' => array( array( 'app' , 'members' ),
array( 'module' , 'profile' ),
array( 'section', 'status' ),
array( 'type' , 'friends' ) ) ) ),
'members_status_all' => array( 'app' => 'members',
'allowRedirect' => 0,
'out' => array( '#app=members(?:&|&)module=profile(?:&|&)section=status((?:&|&)type=all)?(&|$)#i', 'statuses/all/$2' ),
'in' => array( 'regex' => "#^/statuses/all#i",
'matches' => array( array( 'app' , 'members' ),
array( 'module' , 'profile' ),
array( 'section', 'status' ) ) ) ),
'members_list' => array(
'app' => 'members',
'allowRedirect' => 0,
'out' => array( '#app=members((&|&)module=list)?#i', 'members/' ),
'in' => array(
'regex' => "#^/members(/|$|?)#i",
'matches' => array( array( 'app', 'members' ),
array( 'module', 'list' ) )
)
),
'most_liked' => array(
'app' => 'members',
'allowRedirect' => 0,
'out' => array( '#app=members(?:&|&)module=reputation(?:&|&)section=most#i', 'best-content/' ),
'in' => array(
'regex' => "#^/best-content(/|$|?)#i",
'matches' => array( array( 'app', 'members' ),
array( 'module', 'reputation' ),
array( 'section', 'most' ) )
)
),
);