0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
joomla
/
1.7.3-0
/
standard
/
htdocs
/
components
/
com_wrapper
/
[
Home
]
File: router.php
<?php /** * @version $Id: router.php 22338 2011-11-04 17:24:53Z github_bot $ * @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; }