| Current Path : /home/azimutno/www/demo/libraries/nextend/uri/ |
| Current File : /home/azimutno/www/demo/libraries/nextend/uri/joomla.php |
<?php
/*
# author Roland Soos
# copyright Copyright (C) Nextendweb.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-3.0.txt GNU/GPL
*/
defined('_JEXEC') or die('Restricted access'); ?><?php
class NextendUri extends NextendUriAbstract{
function NextendUri(){
$this->_baseuri = JURI::root();
if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
$this->_baseuri = str_replace('http://', 'https://', $this->_baseuri);
}
}
static function ajaxUri($query = ''){
return JUri::current();
}
}