| Current Path : /home/sunflowe/www2/vacancesfloride/libraries/gantry/features/ |
| Current File : /home/sunflowe/www2/vacancesfloride/libraries/gantry/features/resetsettings.php |
<?php
/**
* @version $Id: resetsettings.php 2487 2012-08-17 22:04:06Z btowles $
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2016 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*
* Gantry uses the Joomla Framework (http://www.joomla.org), a GNU/GPLv2 content management system
*
*/
defined('JPATH_BASE') or die();
gantry_import('core.gantryfeature');
/**
* @package gantry
* @subpackage features
*/
class GantryFeatureResetSettings extends GantryFeature
{
var $_feature_name = 'resetsettings';
function render($position)
{
/** @var $gantry Gantry */
global $gantry;
ob_start();
?>
<div class="clear"></div>
<span id="gantry-resetsettings">
[ <a href="<?php echo JROUTE::_($gantry->addQueryStringParams($gantry->getCurrentUrl($gantry->_setbyurl), array('reset-settings'=> ''))); ?>" rel="nofollow"><?php echo $this->get('text'); ?></a> ]
</span>
<div class="clear"></div>
<?php
return ob_get_clean();
}
}