Public Member Functions | |
getAllOptions () |
Definition at line 34 of file Page.php.
getAllOptions | ( | ) |
Retrieve All options
Implements Mage_Eav_Model_Entity_Attribute_Source_Interface.
Definition at line 36 of file Page.php.
00037 { 00038 if (!$this->_options) { 00039 $this->_options = Mage::getResourceModel('cms/block_collection') 00040 ->load() 00041 ->toOptionArray(); 00042 array_unshift($this->_options, array('value'=>'', 'label'=>Mage::helper('catalog')->__('Please select static block ...'))); 00043 } 00044 return $this->_options; 00045 }