Your IP : 216.73.216.68


Current Path : /home/sunflowe/www2/vacancesfloride/libraries/gantry/html/layouts/
Upload File :
Current File : /home/sunflowe/www2/vacancesfloride/libraries/gantry/html/layouts/mod_sidebar.php

<?php
/**
 * @version   $Id: mod_sidebar.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 GantryLayoutMod_Sidebar extends GantryLayout {
    var $render_params = array(
        'contents'       =>  null,
        'position'      =>  null,
        'gridCount'     =>  null,
        'pushPull'      =>  ''
    );
    function render($params = array()){
        /** @var $gantry Gantry */
		global $gantry;

        $rparams = $this-> _getParams($params);
        ob_start();
    // XHTML LAYOUT
?>
            <div class="rt-grid-<?php echo $rparams->gridCount;?> <?php echo $rparams->pushPull; ?>">
                <div id="rt-<?php echo $rparams->position; ?>">
                    <?php echo $rparams->contents; ?>
                </div>
            </div>

<?php
        return ob_get_clean();
    }
}