<?php
/**
* @package Custom Gizmo (Add custom stylesheet for WordPress) - RocketTheme
* @version May 16, 2012
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2010 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*
*
*/
defined('GANTRY_VERSION') or die();
gantry_import('core.gantrygizmo');
class GantryGizmoMyCustomStyle extends GantryGizmo {
var $_name = 'mycustomstyle';
function isEnabled() {
return true;
}
function init() {
global $gantry;
$gantry->addStyles(array('template.css','fusionmenu.css','wp.css','typography.css','extensions.css','mycustomstyle.css'));
}
}
Time to create page: 0.051 seconds