21 lines
333 B
Plaintext
21 lines
333 B
Plaintext
<?php
|
|
// $Id$
|
|
|
|
/**
|
|
* Implementation of hook_install().
|
|
*/
|
|
function profile_install() {
|
|
// Create tables.
|
|
drupal_install_schema('profile');
|
|
}
|
|
|
|
/**
|
|
* Implementation of hook_uninstall().
|
|
*/
|
|
function profile_uninstall() {
|
|
// Remove tables
|
|
drupal_uninstall_schema('profile');
|
|
|
|
variable_del('profile_block_author_fields');
|
|
}
|