You are here

function notifications_tags_user_page in Notifications 6

Same name and namespace in other branches
  1. 5 notifications_tags/notifications_tags.module \notifications_tags_user_page()
  2. 6.2 notifications_tags/notifications_tags.module \notifications_tags_user_page()
  3. 6.3 notifications_tags/notifications_tags.module \notifications_tags_user_page()

Returns a list of taxonomy subscriptions

2 string references to 'notifications_tags_user_page'
notifications_tags_menu in notifications_tags/notifications_tags.module
Implementation of hook_menu_()
notifications_tags_notifications in notifications_tags/notifications_tags.module
Implementation of hook_notifications().

File

notifications_tags/notifications_tags.module, line 143
Subscriptions to taxonomy terms

Code

function notifications_tags_user_page($account = NULL) {
  global $user;
  module_load_include('inc', 'notifications_content', 'notifications_content.pages');
  if (is_null($account)) {
    $account = $user;
  }
  return drupal_get_form('notifications_tags_user_form', $account);
}