| Current Path : /home/s/u/n/sunflowe/www2/vacancesfloride/libraries/gantry/features/ |
| Current File : /home/s/u/n/sunflowe/www2/vacancesfloride/libraries/gantry/features/copyright.php |
<?php
/**
* @version $Id: copyright.php 15512 2013-11-13 19:10:20Z djamil $
* @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 GantryFeatureCopyright extends GantryFeature
{
var $_feature_name = 'copyright';
function render($position)
{
ob_start();
?>
<div class="clear"></div>
<div class="rt-block">
<?php echo $this->get('text'); ?>
</div>
<?php
return ob_get_clean();
}
}