You are here

function notifications_tags_user_page in Notifications 5

Same name and namespace in other branches
  1. 6 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

1 string reference to 'notifications_tags_user_page'
notifications_tags_menu in notifications_tags/notifications_tags.module
Implementation of hook_menu_()

File

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

Code

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