| Current Path : /home/s/u/n/sunflowe/www2/vacancesfloride/libraries/gantry/features/ |
| Current File : /home/s/u/n/sunflowe/www2/vacancesfloride/libraries/gantry/features/styledeclaration.php |
<?php
/**
* @version $Id: styledeclaration.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('JPATH_BASE') or die();
gantry_import('core.gantryfeature');
/**
* @package gantry
* @subpackage features
*/
class GantryFeatureStyleDeclaration extends GantryFeature
{
var $_feature_name = 'styledeclaration';
function isEnabled()
{
/** @var $gantry Gantry */
global $gantry;
$menu_enabled = $this->get('enabled');
if (1 == (int)$menu_enabled) return true;
return false;
}
function init()
{
/** @var $gantry Gantry */
global $gantry;
//inline css for dynamic stuff
$css = 'body {background:' . $gantry->get('bgcolor') . ';}';
$css .= 'body a {color:' . $gantry->get('linkcolor') . ';}';
$css .= '#rt-header .rt-container {background:' . $gantry->get('headercolor') . ';}';
$css .= '#rt-bottom .rt-container {background:' . $gantry->get('bottomcolor') . ';}';
$css .= '#rt-footer .rt-container, #rt-copyright .rt-container, #rt-menu .rt-container {background:' . $gantry->get('footercolor') . ';}';
$gantry->addInlineStyle($css);
//style stuff
$gantry->addStyle($gantry->get('cssstyle') . ".css");
}
}