Public Member Functions | |
initForm () | |
getUpgradeAllButtonHtml () | |
getBackButtonHtml () |
Definition at line 34 of file Install.php.
getBackButtonHtml | ( | ) |
Definition at line 56 of file Install.php.
00057 { 00058 $html = ''; 00059 00060 $html .= $this->getLayout()->createBlock('adminhtml/widget_button')->setType('button') 00061 ->setClass('back')->setLabel($this->__('Back to local packages')) 00062 ->setOnClick("setLocation('" . $this->getUrl('*/extensions_local') . "')") 00063 ->toHtml(); 00064 00065 return $html; 00066 }
getUpgradeAllButtonHtml | ( | ) |
Definition at line 44 of file Install.php.
00045 { 00046 $html = ''; 00047 00048 $html .= $this->getLayout()->createBlock('adminhtml/widget_button')->setType('button') 00049 ->setClass('add')->setLabel($this->__('Upgrade all packages')) 00050 ->setOnClick("upgradeAll()") 00051 ->toHtml(); 00052 00053 return $html; 00054 }
initForm | ( | ) |
Definition at line 36 of file Install.php.
00037 { 00038 $this->setTitle('Install packages'); 00039 $this->setTemplate('extensions/mass/install.phtml'); 00040 00041 return $this; 00042 }