blob: 1c8d17b746da041151814d8c0baa9db526ffb289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
// $Id$
/**
* Implementation of hook_install().
*/
function forum_install() {
// Create tables.
drupal_install_schema('forum');
}
/**
* Implementation of hook_uninstall().
*/
function forum_uninstall() {
// Remove tables.
drupal_uninstall_schema('forum');
db_query("DELETE FROM {node} WHERE type = 'forum'");
variable_del('forum_containers');
variable_del('forum_nav_vocabulary');
variable_del('forum_hot_topic');
variable_del('forum_per_page');
variable_del('forum_order');
variable_del('forum_block_num_0');
variable_del('forum_block_num_1');
}
|