_admin_init_theme()Initialize the admin "theme".
contrib-6/admin/admin.theme.inc, line 5
<?php
function _admin_init_theme() {
global $theme, $theme_key;
if (empty($theme)) {
_admin_theme_rebuild();
$theme = $theme_key = 'admin';
$path = drupal_get_path('module', 'admin') .'/theme';
$theme_info = new StdClass();
$theme_info->name = 'admin';
$theme_info->filename = "{$path}/admin.theme.info";
$theme_info->engine = 'phptemplate';
$theme_info->owner = drupal_get_path('theme_engine', 'phptemplate') .'/phptemplate.engine';
$theme_info->stylesheets = array();
$theme_info->stylesheets['screen'][] = "{$path}/reset.css";
$theme_info->stylesheets['screen'][] = "{$path}/style.css";
$theme_info->scripts = array();
$theme_info->scripts[] = "{$path}/theme.js";
_init_theme($theme_info);
return TRUE;
}
}
?>