loadLayout(); $head = $this->getLayout()->getBlock('head'); $head->setTitle($this->__("Extension Overview")." / meets-ecommerce"); $this->_setActiveMenu('meecom'); $this->_addContent($this->getLayout()->createBlock('meecomframe/adminhtml_extension_index_head')); $this->_addContent($this->getLayout()->createBlock('meecomframe/adminhtml_extension_index_content')); $this->_setLogo(); $this->renderLayout(); } /** * License action * */ public function licenseAction(){ } /** * Sets the logo as image * */ private function _setLogo(){ $this->_setCustomHtml(' powered by meets-ecommerce.de
'); } /** * Adds custom html * * @param string $html */ private function _setCustomHtml($html){ $block = $this->getLayout()->createBlock('meecomframe/adminhtml_general_customhtml'); $block->setHtml($html); $this->_addContent($block); } /** * Adds custom javascript * * @param string $js */ private function _setCustomJs($js){ $block = $this->getLayout()->createBlock('meecomframe/adminhtml_general_customjs'); $block->setJs($js); $this->_addContent($block); } }