You are here

function notifications_account_subscription_list_page in Notifications 7

Generic user page for a subscription type

3 string references to 'notifications_account_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_()
notifications_user_menu in notifications_user/notifications_user.module
Implementation of hook_menu()

File

notifications_account/notifications_account.module, line 158
Notifications module - User subscriptions tabs

Code

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

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