function footer_block() { $this->registry->pushApp('common'); //include_once(Util::base_Path('include/classes/nls.class.php')); //NLS::setTextdomain('common', Util::formatPath(MIGUELGETTEXT_DIR), NLS::getCharset()); $footer_div = html_div('pie'); $hr = html_hr(); $hr->set_tag_attribute("noshade"); $hr->set_tag_attribute("size", 2); $footer_div->add($hr); include_once Util::app_Path('common/view/classes/miguel_footer.class.php'); $footer = new miguel_Footer(); $footer_div->add($footer->getContent()); $this->registry->popApp('common'); return $footer_div; }
function footer_block() { $this->registry->pushApp('common'); $footer_div = html_div('pie'); $hr = html_hr(); $hr->set_tag_attribute("noshade"); $hr->set_tag_attribute("size", 2); $footer_div->add($hr); include_once Util::app_Path('common/view/classes/miguel_footer.class.php'); $table = new miguel_Footer(); $footer_div->add($table->getContent()); unset($table); $this->registry->popApp('common'); return $footer_div; }