function forum_install

Implements hook_install().

File

drupal/modules/forum/forum.install, line 11
Install, update, and uninstall functions for the Forum module.

Code

function forum_install() {

  // Set the weight of the forum.module to 1 so it is loaded after the taxonomy.module.
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'forum')
    ->execute();

  // Forum topics are published by default, but do not have any other default
  // options set (for example, they are not promoted to the front page).
  variable_set('node_options_forum', array(
    'status',
  ));
}