Conditions | 2 |
Paths | 2 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function toOptionArray() |
||
19 | { |
||
20 | if (!$this->_options) { |
||
21 | parent::toOptionArray(); |
||
22 | $aNewCmsOption = array( |
||
23 | 'value' => '', |
||
24 | 'label' => Mage::helper('sitewards_b2bprofessional')->__('-- Please Select --') |
||
25 | ); |
||
26 | |||
27 | $aCustomerLogin = array( |
||
28 | 'value' => 'customer/account/login', |
||
29 | 'label' => Mage::helper('sitewards_b2bprofessional')->__('Customer Login') |
||
30 | ); |
||
31 | array_unshift($this->_options, $aNewCmsOption, $aCustomerLogin); |
||
32 | } |
||
33 | return $this->_options; |
||
34 | } |
||
35 | } |