1 | <?php |
||
10 | class Mygento_Payture_Model_Checkout extends Mage_Payment_Model_Method_Abstract |
||
11 | { |
||
12 | |||
13 | protected $_code = 'payture'; |
||
14 | protected $_formBlockType = 'payture/form'; |
||
15 | protected $_infoBlockType = 'payture/info'; |
||
16 | protected $_canUseForMultishipping = false; |
||
17 | protected $_isInitializeNeeded = true; |
||
18 | protected $_canRefund = true; |
||
19 | protected $_isGateway = true; |
||
20 | protected $_canCapturePartial = true; |
||
21 | |||
22 | public function getOrderPlaceRedirectUrl() |
||
26 | |||
27 | /** |
||
28 | * |
||
29 | * @param Varien_Data_Form_Element_Abstract $element |
||
30 | * @return string |
||
31 | * |
||
32 | * @SuppressWarnings("unused") |
||
33 | */ |
||
34 | public function initialize($action, $stateObject) |
||
44 | |||
45 | protected function _getAssignedState($status) |
||
53 | |||
54 | public function getMethodTitle() |
||
58 | } |
||
59 |