2006-07-13 13:14:25 +00:00
|
|
|
<?php
|
2006-07-14 01:05:10 +00:00
|
|
|
// $Id$
|
2006-07-13 13:14:25 +00:00
|
|
|
|
2006-09-01 07:40:08 +00:00
|
|
|
/**
|
|
|
|
* Implementation of hook_install().
|
|
|
|
*/
|
2006-07-13 13:14:25 +00:00
|
|
|
function aggregator_install() {
|
2007-05-25 12:46:46 +00:00
|
|
|
// Create tables.
|
|
|
|
drupal_install_schema('aggregator');
|
2006-07-13 13:14:25 +00:00
|
|
|
}
|
2006-09-01 07:40:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of hook_uninstall().
|
|
|
|
*/
|
|
|
|
function aggregator_uninstall() {
|
2007-05-25 12:46:46 +00:00
|
|
|
// Remove tables.
|
|
|
|
drupal_uninstall_schema('aggregator');
|
|
|
|
|
2006-09-01 07:40:08 +00:00
|
|
|
variable_del('aggregator_allowed_html_tags');
|
|
|
|
variable_del('aggregator_summary_items');
|
|
|
|
variable_del('aggregator_clear');
|
|
|
|
variable_del('aggregator_category_selector');
|
|
|
|
}
|