Mage_Adminhtml_Block_Catalog_Product_Helper_Form_Boolean Class Reference

Inheritance diagram for Mage_Adminhtml_Block_Catalog_Product_Helper_Form_Boolean:

Varien_Data_Form_Element_Select Varien_Data_Form_Element_Abstract Varien_Data_Form_Abstract Varien_Object

List of all members.

Public Member Functions

 __construct ($attributes=array())


Detailed Description

Definition at line 34 of file Boolean.php.


Constructor & Destructor Documentation

__construct ( attributes = array()  ) 

Enter description here...

Parameters:
array $attributes

Reimplemented from Varien_Data_Form_Element_Select.

Definition at line 36 of file Boolean.php.

00037     {
00038         parent::__construct($attributes);
00039         $this->setValues(array(
00040             array(
00041                 'label' => Mage::helper('catalog')->__('No'),
00042                 'value' => 0,
00043             ),
00044             array(
00045                 'label' => Mage::helper('catalog')->__('Yes'),
00046                 'value' => 1,
00047             ),
00048         ));
00049     }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:22:46 2009 for Magento by  doxygen 1.5.8