00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Adminhtml_Block_Extensions_Mass_Install extends Mage_Adminhtml_Block_Widget_Form
00035 {
00036 public function initForm()
00037 {
00038 $this->setTitle('Install packages');
00039 $this->setTemplate('extensions/mass/install.phtml');
00040
00041 return $this;
00042 }
00043
00044 public function getUpgradeAllButtonHtml()
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 }
00055
00056 public function getBackButtonHtml()
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 }
00067 }