| Current Path : /home/sunflowe/www2/vacancesfloride/libraries/gantry/html/layouts/ |
| Current File : /home/sunflowe/www2/vacancesfloride/libraries/gantry/html/layouts/feature_basic.php |
<?php
/**
* @version $Id: feature_basic.php 2381 2012-08-15 04:14:26Z 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('GANTRY_VERSION') or die();
gantry_import('core.gantrylayout');
/**
*
* @package gantry
* @subpackage html.layouts
*/
class GantryLayoutFeature_Basic extends GantryLayout {
var $render_params = array(
'contents' => null
);
function render($params = array()){
/** @var $gantry Gantry */
global $gantry;
$rparams = $this-> _getParams($params);
$output = '';
$output .= $rparams->contents;
return $output;
}
}