Ejemplo n.º 1
0
 /**
  * Load the  template (HTML or XML) files to the template object.
  *  
  * 
  */
 protected function loadHTMLTemplates()
 {
     parent::loadHTMLTemplates();
     $this->template->addHeaderLink("view.js");
     $this->template->appendFileById("menu_view.html", "li", "navBarUL", true);
     $this->template->appendFileById("menu_view_person.html", "ul", "menuView");
 }
Ejemplo n.º 2
0
 /**
  * Load the  template (HTML or XML) files to the template object.
  *  
  * 
  */
 protected function loadHTMLTemplates()
 {
     if (!parent::loadHTMLTemplates()) {
         return false;
     }
     if (!$this->template->appendFileByNode('tab_container.html', 'div', $this->template->getElementByID('siteContent'))) {
         return false;
     }
     return true;
 }