function header_block() { $this->registry->pushApp('common'); //include_once(Util::base_Path('include/classes/nls.class.php')); //NLS::setTextdomain('common', Util::formatPath(MIGUELGETTEXT_DIR), NLS::getCharset()); include_once Util::app_Path('common/view/classes/miguel_header.class.php'); $header = html_div(); $table = new miguel_Header(); $header->add($table->getContent()); unset($table); $this->registry->popApp('common'); return $header; }
function header_block() { $this->registry->pushApp('common'); include_once Util::app_Path('common/view/classes/miguel_header.class.php'); $header = html_div(); $table = new miguel_Header($this->getViewVariable("str_help"), $this->getViewVariable("str_message")); $header->add($table->getContent()); unset($table); $this->registry->popApp('common'); return $header; }