You are here

function notifications_forum_enable in Forum notifications 7

Implements hook_enable().

File

./notifications_forum.install, line 6

Code

function notifications_forum_enable() {

  // Enable the forum vocabulary for notifications tags subscriptions
  if ($vid = variable_get('forum_nav_vocabulary', 0)) {
    $allowed_vocabularies = variable_get('notifications_tags_vocabularies', array());
    $allowed_vocabularies[$vid] = $vid;
    variable_set('notifications_tags_vocabularies', $allowed_vocabularies);
  }
}