* @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'; /** * Constructor * * @param string $template='pixelegg' name of the template * @return idots_framework */ function __construct($template='pixelegg') { parent::__construct($template); // call the constructor of the extended class $this->template_dir = '/pixelegg'; // we are packaged as an application } }