function pay_node_content_extra_fields in Pay 7
Same name and namespace in other branches
- 6 modules/pay_node/pay_node.module \pay_node_content_extra_fields()
Implements hook_content_extra_fields().
File
- modules/
pay_node/ pay_node.module, line 210
Code
function pay_node_content_extra_fields($type_name) {
if (variable_get('pay_node_enabled_' . $type_name, FALSE)) {
return array(
'pay_node' => array(
'label' => t('Payment information'),
'description' => t('Payment form or summary information.'),
'weight' => 25,
),
);
}
}