| 1 | <?php |
||
| 13 | class Checkout |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @param array $checkoutMethodData |
||
| 17 | * |
||
| 18 | * @return bool |
||
| 19 | * |
||
| 20 | */ |
||
| 21 | public static function _isGuestCheckout(array $checkoutMethodData) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param array $checkoutMethodData |
||
| 28 | * |
||
| 29 | * @return bool |
||
| 30 | * |
||
| 31 | */ |
||
| 32 | public static function isRegisterCheckout(array $checkoutMethodData) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param array $checkoutMethodData |
||
| 39 | * |
||
| 40 | * @return bool |
||
| 41 | * |
||
| 42 | */ |
||
| 43 | public static function isCustomerCheckout(array $checkoutMethodData) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @param Mage_Sales_Model_Quote $quote |
||
| 50 | * |
||
| 51 | * @return Mage_Sales_Model_Order |
||
| 52 | * |
||
| 53 | */ |
||
| 54 | public static function quoteServiceSubmitAll(Mage_Sales_Model_Quote $quote) |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @param $method |
||
| 64 | * @param $checkoutMethodData |
||
| 65 | * |
||
| 66 | * @return bool |
||
| 67 | */ |
||
| 68 | private static function _isCheckoutMethod($method, $checkoutMethodData) |
||
| 78 | } |
||
| 79 |