function notifications_anonymous_request_page in Notifications 6.4
Page callback. Provide a form to request to edit a destination
1 string reference to 'notifications_anonymous_request_page'
- notifications_anonymous_menu in notifications_anonymous/
notifications_anonymous.module - Implementation of hook_menu()
File
- notifications_anonymous/
notifications_anonymous.pages.inc, line 43 - Notifications for anonymous users
Code
function notifications_anonymous_request_page() {
$output = '<p>' . t('If you want to unsubscribe or manage subscriptions for a destination, enter the address here and click on Submit.') . '</p>';
$output .= '<p>' . t('You will get a message with a link that will allow you to manage your subscriptions.') . '</p>';
$output .= drupal_get_form('notifications_anonymous_request_form');
return $output;
}