| 1 |
<?php
|
| 2 |
// $Id: admin_theme.install,v 1.1 2008/11/14 21:34:23 davyvandenbremt Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* Implementation of hook_install().
|
| 6 |
*/
|
| 7 |
function admin_theme_install() {
|
| 8 |
$link = array('!link' => l(t('Administer > Site configuration > Administration theme'), 'admin/settings/admin_theme'));
|
| 9 |
drupal_set_message(t("Administration theme module settings are available under !link", $link));
|
| 10 |
}
|
| 11 |
|
| 12 |
/**
|
| 13 |
* Implementation of hook_uninstall().
|
| 14 |
*/
|
| 15 |
function admin_theme_uninstall() {
|
| 16 |
db_query("DELETE FROM {variable} WHERE name LIKE 'admin_theme_%'");
|
| 17 |
cache_clear_all('variables', 'cache');
|
| 18 |
}
|