*/ class Mage_XmlConnect_Block_Adminhtml_Mobile_Submission_Tab_Container extends Mage_Adminhtml_Block_Template implements Mage_Adminhtml_Block_Widget_Tab_Interface { /** * Constructor * Setting view parameters, template */ public function __construct() { parent::__construct(); $this->setShowGlobalIcon(true); $this->setTemplate('xmlconnect/submission/container.phtml'); } /** * Prepare label for tab * * @return string */ public function getTabLabel() { return $this->__('Submission'); } /** * Prepare title for tab * * @return string */ public function getTabTitle() { return $this->__('Submission'); } /** * Returns status flag about this tab can be shown or not * * @return true */ public function canShowTab() { return true; } /** * Returns status flag about this tab hidden or not * * @return true */ public function isHidden() { return false; } /** * Retrive submission action url * * @return string */ public function getActionUrl() { $param = array('key' => Mage::helper('xmlconnect')->getApplication()->getId()); return $this->getUrl('*/*/submissionPost', $param); } }