*/ class Mage_Adminhtml_Block_Tax_Class_Edit extends Mage_Adminhtml_Block_Widget_Form_Container { public function __construct() { $this->_objectId = 'id'; $this->_controller = 'tax_class'; parent::__construct(); $this->_updateButton('save', 'label', Mage::helper('tax')->__('Save Class')); $this->_updateButton('delete', 'label', Mage::helper('tax')->__('Delete Class')); } public function getHeaderText() { if (Mage::registry('tax_class')->getId()) { return Mage::helper('tax')->__("Edit Class '%s'", $this->htmlEscape(Mage::registry('tax_class')->getClassName())); } else { return Mage::helper('tax')->__('New Class'); } } public function setClassType($classType) { $this->getChild('form')->setClassType($classType); return $this; } }