You are here

function notifications_user_subscription_list_page in Notifications 6.4

Generic user page for a subscription type

2 string references to 'notifications_user_subscription_list_page'
notifications_content_menu in notifications_content/notifications_content.module
Implementation of hook_menu_()
notifications_tags_menu in notifications_tags/notifications_tags.module
Implementation of hook_menu_()

File

./notifications.module, line 1891
Notifications module

Code

function notifications_user_subscription_list_page($type, $account) {
  module_load_include('pages.inc', 'notifications');
  module_load_include('manage.inc', 'notifications');

  // Needed for bulk operations
  return drupal_get_form('notifications_subscription_list_form', $type, $account);
}