Mage_Adminhtml_Block_Extensions_Local_Upgrade Class Reference

Inheritance diagram for Mage_Adminhtml_Block_Extensions_Local_Upgrade:

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 Upgrade.php.


Member Function Documentation

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     }


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