function system_admin_compact_page
Same name and namespace in other branches
- 6.x drupal-6.x/modules/system/system.admin.inc \system_admin_compact_page()
Menu callback; Sets whether the admin menu is in compact mode or not.
Parameters
$mode: Valid values are 'on' and 'off'.
3 string references to 'system_admin_compact_page'
- drupal-6.bare.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.bare.database.php - Bare installation of Drupal 6.17, for test purposes.
- drupal-6.filled.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.filled.database.php - Filled installation of Drupal 6.17, for test purposes.
- system_menu in drupal-7.x/
modules/ system/ system.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ system/ system.module, line 2914 - Configuration system that lets administrators modify the workings of the site.
Código
function system_admin_compact_page($mode = 'off') {
user_cookie_save(array('admin_compact_mode' => ($mode == 'on')));
drupal_goto();
}