1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * Implementation of hook_install().
- */
- function admin_theme_install() {
- // Updating module weight to 10 to make it run after system.
- // (For user access checks etc.)
- db_query("UPDATE {system} SET weight = 10 WHERE name = 'admin_theme'");
-
- $link = array('!link' => l(t('Administer > Appearance > Administration theme'), 'admin/appearance'));
- drupal_set_message(t("Administration theme module settings are available under !link", $link));
- }
- /**
- * Implementation of hook_uninstall().
- */
- function admin_theme_uninstall() {
- // Cleaning up general admin theme variables.
- variable_del('admin_theme_path');
- variable_del('admin_theme_path_disallow');
- // Cleaning up module defined admin theme variables.
- // We need to add admin theme's explicitly,
- // because it's not in the list of modules anymore.
- drupal_load('module', 'admin_theme');
- $admin_theme_options = admin_theme_admin_theme_info();
- $options = array();
- foreach ($admin_theme_options as $option => $info) {
- $info['option'] = $option;
- $info['module'] = 'admin_theme';
- $options[] = $info;
- }
- // Merging admin theme's options with other module options.
- // @fixme Does this work if other modules are also uninstalled simultaneously?
- $list = array_merge(admin_theme_list(), $options);
- // Deleting the module defined variables.
- foreach ($list as $info) {
- $var = admin_theme_variable_name($info['module'], $info['option']);
- variable_del($var);
- }
- }
|