function notifications_subscription_form in Notifications 7
Same name and namespace in other branches
- 6.4 notifications.module \notifications_subscription_form()
- 6 notifications.pages.inc \notifications_subscription_form()
- 6.2 notifications.pages.inc \notifications_subscription_form()
- 6.3 notifications.pages.inc \notifications_subscription_form()
Subscription form ('add', 'edit', 'confirm')
3 string references to 'notifications_subscription_form'
- notifications_forms in ./
notifications.module - Implementation of hook_forms()
- notifications_menu in ./
notifications.module - Implementation of hook_menu().
- notifications_ui_page_add_subscription in notifications_ui/
notifications_ui.pages.inc - Page callback: Add subscription form
File
- ./
notifications.module, line 1266 - Notifications module
Code
function notifications_subscription_form($form, &$form_state, $operation, $subscription) {
return $subscription
->get_form($operation, $form, $form_state);
}