/** * Constructor sets the template filename and the license to the footer * @return void */ public function __construct() { // define as singleton, because only one footer exists $this->_API_setObjectIsSingleton(TRUE); parent::__construct(); $this->loadTemplatefile('footer.tpl'); }
/** * Constructor sets the template filename * @return void */ public function __construct() { parent::__construct(); // add empty string by default to parse the template $this->addTemplateVar('ATTRIBUTES', ' '); // add empty string by default to parse the template $this->addTemplateVar('TITLE', ' '); }
/** * Constructor sets the template filename and the license to the footer * @return void */ public function __construct() { // define as singleton, because only one inclusion exists $this->_API_setObjectIsSingleton(TRUE); parent::__construct(); $this->loadTemplatefile('default_js_files.tpl'); $this->_setDefaultJsFiles(); }
/** * Constructor sets up {@link $db} and runs the * functions to create the header. * @global string $area * @return void */ public function __construct() { // global area variable from main.php global $area; // define as singleton, because only one header exists $this->_API_setObjectIsSingleton(TRUE); parent::__construct(); $this->area = $area == 'con_frameheader' ? 'con_editframe' : $area; // store db connection object $this->db = sf_api('LIB', 'Ado'); $this->loadTemplatefile('header.tpl'); $this->_generateProjectSelect(); $this->_generateLanguageSelect(); $this->_generateTree(); $this->_generateMenuArray(); $this->_generateMenuLayer(); $this->_setTemplateVariables(); }
/** * Constructor sets the template filename * @return void */ public function __construct() { parent::__construct(); $this->loadTemplatefile('tree.tpl'); }
public function __construct() { parent::__construct(); $this->loadTemplatefile('form_elements.tpl'); }
/** * Constructor sets the template filename * @return void */ public function __construct() { parent::__construct(); $this->loadTemplatefile('backend_area.tpl'); $this->addTemplateVar('UPDATE_VIEW', $this->lng->get('gen_update_view')); }
/** * Constructor sets the template filename * @return void */ public function __construct() { parent::__construct(); $this->loadTemplatefile('breadcrumb.tpl'); }