Page MenuHomeIn-Portal Phabricator

themes_tag_processor.php
No OneTemporary

File Metadata

Created
Thu, Sep 25, 10:28 PM

themes_tag_processor.php

<?php
/**
* @version $Id: themes_tag_processor.php 13385 2010-04-21 18:08:12Z alex $
* @package In-Portal
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license GNU/GPL
* In-Portal is Open Source software.
* This means that this software may have been modified pursuant
* the GNU General Public License, and as distributed it includes
* or is derivative of works licensed under the GNU General Public License
* or other free or open source software licenses.
* See http://www.in-portal.org/license for copyright notices and details.
*/
defined('FULL_PATH') or die('restricted access!');
class ThemesTagProcessor extends kDBTagProcessor
{
function StylesheetFile($params)
{
// not using theme-based stylesheets anymore
trigger_error('Tag "StylesheetFile" is depricated and should not be used.', E_USER_NOTICE);
return '';
}
function SelectedTheme($params)
{
$object =& $this->getObject($params);
$themes_helper =& $this->Application->recallObject('ThemesHelper');
/* @var $themes_helper kThemesHelper */
return $object->GetDBField('ThemeId') == $themes_helper->getCurrentThemeId();
}
}

Event Timeline