Mage_Adminhtml_Block_Extensions_Remote_Edit_Tab_Actions Class Reference

Inheritance diagram for Mage_Adminhtml_Block_Extensions_Remote_Edit_Tab_Actions:

Mage_Adminhtml_Block_Extensions_Remote_Edit_Tab_Abstract 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

 __construct ()
 getActionButtonHtml ()


Detailed Description

Definition at line 34 of file Actions.php.


Constructor & Destructor Documentation

__construct (  ) 

Class constructor

Reimplemented from Mage_Adminhtml_Block_Widget_Form.

Definition at line 37 of file Actions.php.

00038     {
00039         parent::__construct();
00040         $this->setTemplate('extensions/remote/actions.phtml');
00041     }


Member Function Documentation

getActionButtonHtml (  ) 

Definition at line 43 of file Actions.php.

00044     {
00045         $html = '';
00046 
00047         $html .= $this->getLayout()->createBlock('adminhtml/widget_button')->setType('button')
00048             ->setClass('save')->setLabel($this->__('Install'))
00049             ->setOnClick('install()')
00050             ->toHtml();
00051 
00052         $html .= $this->getLayout()->createBlock('adminhtml/widget_button')->setType('button')
00053             ->setClass('save')->setLabel($this->__('Upgrade'))
00054             ->setOnClick('upgrade()')
00055             ->toHtml();
00056 
00057         return $html;
00058     }


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