egroupware/pixelegg/inc/class.pixelegg_framework.inc.php

43 lines
1001 B
PHP
Executable File

<?php
/**
* EGroupware: Stylite Pixelegg template
*
* et2 Messages
*
* Please do NOT change css-files directly, instead change less-files and compile them!
*
* @link http://www.egroupware.org
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @author Stefan Reinhard <stefan.reinhard@pixelegg.de>
* @package pixelegg
* @version $Id$
*/
/**
* Stylite Pixelegg template
*/
class pixelegg_framework extends jdots_framework
{
/**
* Appname used for everything but JS includes, which we re-use from jdots
*/
const APP = 'pixelegg';
/**
* Enable to use this template sets login.tpl for login page
*/
const LOGIN_TEMPLATE_SET = true;
/**
* Constructor
*
* Overwritten to set own app/template name (parent can NOT use static::APP!)
*
* @param string $template='pixelegg' name of the template
*/
function __construct($template=self::APP)
{
parent::__construct($template); // call the constructor of the extended class
}
}