You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can set Seven as the default admin theme in your own implementation of the Skeleton. The Skeleton as provided seems to be just an example of how you could create a Skeleton. You can create a completely customized Skeleton for your own projects with your own settings and functionality anyway you like.
You can add this in the .install file:
// Enable the admin theme (Seven), set it as the admin theme, and use it when
// editing content.
$admin_theme = 'seven';
db_update('system')
->fields(array(
'status' => 1,
))
->condition('type', 'theme')
->condition('name', $admin_theme)
->execute();
variable_set('admin_theme', $admin_theme);
variable_set('node_admin_theme', '1');
No description provided.
The text was updated successfully, but these errors were encountered: