You are here

function admin_system_info_alter in Admin 6

Implementation of hook_system_info_alter(). Throw a flag that tells us we need to reinstantiate the admin theme.

File

./admin.module, line 214

Code

function admin_system_info_alter(&$info, $theme) {
  static $once;
  if (!isset($once)) {
    $once = TRUE;
    variable_set('admin_theme_invalidated', TRUE);
  }
}