You are here

notifications_forum.install in Forum notifications 7

File

notifications_forum.install
View source
<?php

/**
 * Implements hook_enable().
 */
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);
  }
}

Functions

Namesort descending Description
notifications_forum_enable Implements hook_enable().