Mage_Adminhtml_Block_Extensions_Mass_Install Class Reference

Inheritance diagram for Mage_Adminhtml_Block_Extensions_Mass_Install:

Mage_Adminhtml_Block_Widget_Form Mage_Adminhtml_Block_Widget Mage_Adminhtml_Block_Template Mage_Core_Block_Template Mage_Core_Block_Abstract Varien_Object

List of all members.

Public Member Functions

 initForm ()
 getUpgradeAllButtonHtml ()
 getBackButtonHtml ()


Detailed Description

Definition at line 34 of file Install.php.


Member Function Documentation

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     }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:22:50 2009 for Magento by  doxygen 1.5.8