function notifications_forms in Notifications 6.4
Same name and namespace in other branches
- 7 notifications.module \notifications_forms()
Implementation of hook_forms()
File
- ./
notifications.module, line 442 - Notifications module
Code
function notifications_forms() {
$forms['notifications_subscription_add_form']['callback'] = 'notifications_subscription_form';
$forms['notifications_subscription_edit_form']['callback'] = 'notifications_subscription_form';
$forms['notifications_subscription_confirm_form']['callback'] = 'notifications_subscription_form';
return $forms;
}