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