
Public Member Functions | |
| getMethod () | |
| getMethodCode () | |
| getInfoData ($field) | |
Definition at line 30 of file Form.php.
| getInfoData | ( | $ | field | ) | 
Retrieve field value data from payment info object
| string | $field | 
Definition at line 63 of file Form.php.
00064 { 00065 return $this->htmlEscape($this->getMethod()->getInfoInstance()->getData($field)); 00066 }
| getMethod | ( | ) | 
Retrieve payment method model
Definition at line 37 of file Form.php.
00038 { 00039 $method = $this->getData('method'); 00040 00041 if (!($method instanceof Mage_Payment_Model_Method_Abstract)) { 00042 Mage::throwException($this->__('Can not retrieve payment method model object.')); 00043 } 00044 return $method; 00045 }
| getMethodCode | ( | ) | 
 1.5.8