
Public Member Functions | |
| initForm () | |
| getUploadInstallUrl () | |
| getUploadButtonHtml () | |
| getRemoteInstallUrl () | |
| getRemoteButtonHtml () | |
| getBackButtonHtml () | |
Definition at line 34 of file Form.php.
| getBackButtonHtml | ( | ) |
Definition at line 78 of file Form.php.
00079 { 00080 $html = ''; 00081 00082 $html .= $this->getLayout()->createBlock('adminhtml/widget_button')->setType('button') 00083 ->setClass('back')->setLabel($this->__('Back to local packages')) 00084 ->setOnClick("setLocation('" . $this->getUrl('*/extensions_local') . "')") 00085 ->toHtml(); 00086 00087 return $html; 00088 }
| getRemoteButtonHtml | ( | ) |
Definition at line 66 of file Form.php.
00067 { 00068 $html = ''; 00069 00070 $html .= $this->getLayout()->createBlock('adminhtml/widget_button')->setType('button') 00071 ->setClass('save')->setLabel($this->__('Download and Install')) 00072 ->setOnClick("install('remote')") 00073 ->toHtml(); 00074 00075 return $html; 00076 }
| getRemoteInstallUrl | ( | ) |
| getUploadButtonHtml | ( | ) |
Definition at line 49 of file Form.php.
00050 { 00051 $html = ''; 00052 00053 $html .= $this->getLayout()->createBlock('adminhtml/widget_button')->setType('button') 00054 ->setClass('save')->setLabel($this->__('Upload and Install')) 00055 ->setOnClick("install('local')") 00056 ->toHtml(); 00057 00058 return $html; 00059 }
| getUploadInstallUrl | ( | ) |
| initForm | ( | ) |
1.5.8