*/ class Mage_Adminhtml_Block_Tax_Rate_Toolbar_Save extends Mage_Adminhtml_Block_Template { public function __construct() { parent::__construct(); $this->assign('createUrl', $this->getUrl('*/tax_rate/save')); $this->setTemplate('tax/toolbar/rate/save.phtml'); } protected function _prepareLayout() { $this->setChild('backButton', $this->getLayout()->createBlock('adminhtml/widget_button') ->setData(array( 'label' => Mage::helper('tax')->__('Back'), 'onclick' => 'window.location.href=\''.$this->getUrl('*/*/').'\'', 'class' => 'back' )) ); $this->setChild('resetButton', $this->getLayout()->createBlock('adminhtml/widget_button') ->setData(array( 'label' => Mage::helper('tax')->__('Reset'), 'onclick' => 'window.location.reload()' )) ); $this->setChild('saveButton', $this->getLayout()->createBlock('adminhtml/widget_button') ->setData(array( 'label' => Mage::helper('tax')->__('Save Rate'), 'onclick' => 'wigetForm.submit();return false;', 'class' => 'save' )) ); $this->setChild('deleteButton', $this->getLayout()->createBlock('adminhtml/widget_button') ->setData(array( 'label' => Mage::helper('tax')->__('Delete Rate'), 'onclick' => 'deleteConfirm(\'' . Mage::helper('tax')->__('Are you sure you want to do this?') . '\', \'' . $this->getUrl('*/*/delete', array('rate' => $this->getRequest()->getParam('rate'))) . '\')', 'class' => 'delete' )) ); return parent::_prepareLayout(); } public function getBackButtonHtml() { return $this->getChildHtml('backButton'); } public function getResetButtonHtml() { return $this->getChildHtml('resetButton'); } public function getSaveButtonHtml() { return $this->getChildHtml('saveButton'); } public function getDeleteButtonHtml() { if( intval($this->getRequest()->getParam('rate')) == 0 ) { return; } return $this->getChildHtml('deleteButton'); } }