function commerce_payment_hook_info in Commerce Core 7
Implements hook_hook_info().
File
- modules/
payment/ commerce_payment.module, line 131 - Defines the payment system and checkout integration.
Code
function commerce_payment_hook_info() {
$hooks = array(
'commerce_payment_totals_row_info' => array(
'group' => 'commerce',
),
'commerce_payment_totals_row_info_alter' => array(
'group' => 'commerce',
),
'commerce_payment_method_info' => array(
'group' => 'commerce',
),
'commerce_payment_method_info_alter' => array(
'group' => 'commerce',
),
'commerce_payment_methods' => array(
'group' => 'commerce',
),
'commerce_payment_transaction_status_info' => array(
'group' => 'commerce',
),
'commerce_payment_transaction_uri' => array(
'group' => 'commerce',
),
'commerce_transaction_view' => array(
'group' => 'commerce',
),
'commerce_payment_transaction_access' => array(
'group' => 'commerce',
),
'commerce_payment_transaction_insert' => array(
'group' => 'commerce',
),
'commerce_payment_transaction_update' => array(
'group' => 'commerce',
),
'commerce_payment_transaction_delete' => array(
'group' => 'commerce',
),
'commerce_payment_order_paid_in_full' => array(
'group' => 'commerce',
),
);
return $hooks;
}