Public Member Functions | |
__construct () |
Definition at line 34 of file Regexceptions.php.
__construct | ( | ) |
Check if columns are defined, set template
Reimplemented from Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract.
Definition at line 36 of file Regexceptions.php.
00037 { 00038 $this->addColumn('regexp', array( 00039 'label' => Mage::helper('adminhtml')->__('Matched expression'), 00040 'style' => 'width:120px', 00041 )); 00042 $this->addColumn('value', array( 00043 'label' => Mage::helper('adminhtml')->__('Value'), 00044 'style' => 'width:120px', 00045 )); 00046 $this->_addAfter = false; 00047 $this->_addButtonLabel = Mage::helper('adminhtml')->__('Add Exception'); 00048 parent::__construct(); 00049 }