Public Member Functions | |
toOptionArray () |
Definition at line 35 of file Position.php.
toOptionArray | ( | ) |
Get available options
Definition at line 43 of file Position.php.
00044 { 00045 return array( 00046 array('value' => 'stretch', 'label' => Mage::helper('catalog')->__('Stretch')), 00047 array('value' => 'tile', 'label' => Mage::helper('catalog')->__('Tile')), 00048 array('value' => 'top-left', 'label' => Mage::helper('catalog')->__('Top/Left')), 00049 array('value' => 'top-right', 'label' => Mage::helper('catalog')->__('Top/Right')), 00050 array('value' => 'bottom-left', 'label' => Mage::helper('catalog')->__('Bottom/Left')), 00051 array('value' => 'bottom-right', 'label' => Mage::helper('catalog')->__('Bottom/Right')), 00052 ); 00053 }