|
shop:pay CMS action
Base action for the Payment page.
The action loads an order by an order hash string, specified in the page URL and prepares all required
PHP variables.
See AlsoSupported form fields
Generated PHP variables
Built-in AJAX handlers
Supported form field details¶ submit_payment form fieldA name of the SUBMIT button element.
The submit button should have name submit_payment if you are implementing a regular POST form.
Alternatively you can create an AJAX form with shop:on_pay handler.
Generated PHP variable details¶ order variableShop_Order $order;
An order object, loaded from the database.
This variable can be NULL of the order is not found.
¶ payment_method variableShop_PaymentMethod $payment_method;
A payment method, selected by the customer.
¶ payment_method_obj variableShop_PaymentType $payment_method_obj;
An instance of a specific payment type class, for example the Shop_PayPal_Pro_Payment.
¶ payment_methods variable$Db_DataCollection $payment_methods;
A list of applicable payment methods.
Each element of the collection is an object of the Shop_PaymentMethod class.
Built-in AJAX handlers details¶ shop:on_pay AJAX handlerProcesses the payment form.
Use this handler for creating the Submit button on the Pay page. Example:
1. <a href= "#" onclick= "return $(this).getForm().sendRequest('shop:on_pay')" >Pay</a> |