| Current Path : /var/www/components/com_gantry5/ |
| Current File : /var/www/components/com_gantry5/router.php |
<?php
/**
* @package Gantry 5
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2017 RocketTheme, LLC
* @license GNU/GPLv2 and later
*
* http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die ();
function Gantry5BuildRoute(&$query)
{
$segments = array();
unset($query['view']);
return $segments;
}
function Gantry5ParseRoute($segments)
{
if ($segments) {
return array('g5_not_found' => 1);
}
return array();
}