0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
joomla
/
1.7.2-0
/
standard
/
htdocs
/
components
/
com_wrapper
/
[
Home
]
File: router.php
<?php /** * @version $Id: router.php 21389 2011-05-26 17:28:26Z dextercowley $ * @package Joomla.Site * @subpackage com_wrapper * @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * @param array * @return array */ function WrapperBuildRoute(&$query) { $segments = array(); if (isset($query['view'])) { unset($query['view']); } return $segments; } /** * @param array * @return array */ function WrapperParseRoute($segments) { $vars = array(); $vars['view'] = 'wrapper'; return $vars; }