function hook_invite_sending_controller in Invite 7.4
Defines the module as being an invite sending controller.
Return value
array An array of settings containing the keys:
- label: A human readable, translated label for the controller.
2 functions implement hook_invite_sending_controller()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- invite_by_email_invite_sending_controller in modules/
invite_by_email/ invite_by_email.module - Invite Sending Controller.
- invite_notifications_invite_sending_controller in modules/
invite_notifications/ invite_notifications.module - Invite Sending Controller.
1 invocation of hook_invite_sending_controller()
- invite_type_form in includes/
invite.admin.inc - Generates the invite type editing form.
File
- ./
invite.api.php, line 68 - Hooks provided by the Invite.
Code
function hook_invite_sending_controller() {
return array(
'label' => t('My module invitation controller'),
);
}