function pay_user_categories in Pay 7
Implements hook_user_categories().
File
- ./
pay.module, line 84 - Pay module allows for accepting payments using pluggable payment backends.
Code
function pay_user_categories() {
// Return only a modes 'category' entry - the real work happens in the
// page callback for payment settings. See also hook_menu.
return array(
array(
'name' => 'pay',
'title' => 'Payments',
'weight' => 10,
),
);
}