' . t('The administration menu module provides a dropdown menu arranged for one- or two-click access to most administrative tasks and other common destinations (to users with the proper permissions). Use the settings below to customize the appearance of the menu.') . '

'; case 'admin/help#admin_menu': $output = ''; $output .= '

' . t('The administration menu module provides a dropdown menu arranged for one- or two-click access to most administrative tasks and other common destinations (to users with the proper permissions). Administration menu also displays the number of anonymous and authenticated users, and allows modules to add their own custom menu items. Integration with the menu varies from module to module; the contributed module Devel, for instance, makes strong use of the administration menu module to provide quick access to development tools.', array('@drupal' => 'http://drupal.org/project/devel')) . '

'; $output .= '

' . t('The administration menu settings page allows you to modify some elements of the menu\'s behavior and appearance. Since the appearance of the menu is dependent on your site theme, substantial customizations require modifications to your site\'s theme and CSS files. See the advanced module README.txt file for more information on theme and CSS customizations.', array('@settings' => url('admin/config/administration/admin_menu'))) . '

'; $output .= '

' . t('The menu items displayed in the administration menu depend upon the actual permissions of the viewer. First, the administration menu is only displayed to users in roles with the Access administration menu (admin_menu module) permission. Second, a user must be a member of a role with the Access administration pages (system module) permission to view administrative links. And, third, only currently permitted links are displayed; for example, if a user is not a member of a role with the permissions Administer permissions (user module) and Administer users (user module), the User management menu item is not displayed.') . '

'; return $output; } } /** * Implements hook_permission(). */ function admin_menu_permission() { return array( 'access administration menu' => array( 'title' => t('Access administration menu'), 'description' => t('Display the administration menu at the top of each page.'), ), 'flush caches' => array( 'title' => t('Flush caches'), 'description' => t('Access links to flush caches in the administration menu.'), ), 'display drupal links' => array( 'title' => t('Display Drupal links'), 'description' => t('Provide Drupal.org links in the administration menu.'), ), ); } /** * Implements hook_theme(). */ function admin_menu_theme() { return array( 'admin_menu_links' => array( 'render element' => 'elements', ), 'admin_menu_icon' => array( 'variables' => array(), 'file' => 'admin_menu.inc', ), ); } /** * Implements hook_menu(). */ function admin_menu_menu() { // AJAX callback. // @see http://drupal.org/project/js $items['js/admin_menu/cache'] = array( 'page callback' => 'admin_menu_js_cache', 'access arguments' => array('access administration menu'), 'type' => MENU_CALLBACK, ); // Module settings. $items['admin/config/administration'] = array( 'title' => 'Administration', 'description' => 'Administration tools.', 'page callback' => 'system_admin_menu_block_page', 'access arguments' => array('access administration pages'), 'file' => 'system.admin.inc', 'file path' => drupal_get_path('module', 'system'), ); $items['admin/config/administration/admin_menu'] = array( 'title' => 'Administration menu', 'description' => 'Adjust administration menu settings.', 'page callback' => 'drupal_get_form', 'page arguments' => array('admin_menu_theme_settings'), 'access arguments' => array('administer site configuration'), 'file' => 'admin_menu.inc', ); // Menu link callbacks. $items['admin_menu/toggle-modules'] = array( 'page callback' => 'admin_menu_toggle_modules', 'access arguments' => array('administer site configuration'), 'type' => MENU_CALLBACK, 'file' => 'admin_menu.inc', ); $items['admin_menu/flush-cache'] = array( 'page callback' => 'admin_menu_flush_cache', 'access arguments' => array('flush caches'), 'type' => MENU_CALLBACK, 'file' => 'admin_menu.inc', ); return $items; } /** * Implements hook_menu_alter(). */ function admin_menu_menu_alter(&$items) { // Flush client-side caches whenever the menu is rebuilt. admin_menu_flush_caches(); } /** * Implements hook_init(). * * We can't move this into admin_menu_footer(), because PHP-only based themes * like chameleon load and output scripts and stylesheets in front of * theme_closure(), so we ensure Admin menu's styles and scripts are loaded on * all pages via hook_init(). */ function admin_menu_init() { if (!user_access('access administration menu') || admin_menu_suppress(FALSE)) { return; } // Performance: Skip this entirely for AJAX requests. if (strpos($_GET['q'], 'js/') === 0) { return; } global $user, $language; $path = drupal_get_path('module', 'admin_menu'); drupal_add_css($path . '/admin_menu.css'); if ($user->uid == 1) { drupal_add_css($path . '/admin_menu.uid1.css'); } // Previous versions used the 'defer' attribute to increase browser rendering // performance. At least starting with Firefox 3.6, deferred .js files are // loaded, but Drupal.behaviors are not contained in the DOM when drupal.js // executes Drupal.attachBehaviors(). drupal_add_js($path . '/admin_menu.js'); // Destination query strings are applied via JS. $settings['destination'] = drupal_http_build_query(drupal_get_destination()); // Hash for client-side HTTP/AJAX caching. $cid = 'admin_menu:' . session_id() . ':' . $language->language; if (!empty($_COOKIE['has_js']) && ($hash = admin_menu_cache_get($cid))) { $settings['hash'] = $hash; // The base path to use for cache requests depends on whether clean URLs // are enabled, whether Drupal runs in a sub-directory, and on the language // system configuration. url() already provides us the proper path and also // invokes potentially existing custom_url_rewrite() functions, which may // add further required components to the URL to provide context. Due to // those components, and since url('') returns only base_path() when clean // URLs are disabled, we need to use a replacement token as path. Yuck. $settings['basePath'] = url('admin_menu'); } $replacements = module_invoke_all('admin_menu_replacements'); if (!empty($replacements)) { $settings['replacements'] = $replacements; } if ($setting = variable_get('admin_menu_margin_top', 1)) { $settings['margin_top'] = $setting; } if ($setting = variable_get('admin_menu_position_fixed', 0)) { $settings['position_fixed'] = $setting; } if ($setting = variable_get('admin_menu_tweak_tabs', 0)) { $settings['tweak_tabs'] = $setting; } if ($_GET['q'] == 'admin/modules' || strpos($_GET['q'], 'admin/modules/list') === 0) { $settings['tweak_modules'] = variable_get('admin_menu_tweak_modules', 0); } if ($_GET['q'] == 'admin/people/permissions' || $_GET['q'] == 'admin/people/permissions/list') { $settings['tweak_permissions'] = variable_get('admin_menu_tweak_permissions', 0); } drupal_add_js(array('admin_menu' => $settings), 'setting'); } /** * Suppress display of administration menu. * * This function should be called from within another module's page callback * (preferably using module_invoke()) when the menu should not be displayed. * This is useful for modules that implement popup pages or other special * pages where the menu would be distracting or break the layout. * * @param $set * Defaults to TRUE. If called before hook_footer(), the menu will not be * displayed. If FALSE is passed, the suppression state is returned. */ function admin_menu_suppress($set = TRUE) { static $suppress = FALSE; // drupal_add_js() must only be invoked once. if (!empty($set) && $suppress === FALSE) { $suppress = TRUE; drupal_add_js(array('admin_menu' => array('suppress' => 1)), 'setting'); } return $suppress; } /** * Implements hook_page_alter(). */ function admin_menu_page_alter(&$page) { $page['page_bottom']['admin_menu'] = array( '#markup' => admin_menu_output(), ); } /** * Implements hook_js(). */ function admin_menu_js() { return array( 'cache' => array( 'callback' => 'admin_menu_js_cache', 'includes' => array('common', 'theme', 'unicode'), 'dependencies' => array('devel', 'filter', 'user'), ), ); } /** * Retrieve a client-side cache hash from cache. * * The hash cache is consulted more than once per request; we therefore cache * the results statically to avoid multiple database requests. * * This should only be used for client-side cache hashes. Use cache_menu for * administration menu content. * * @param $cid * The cache ID of the data to retrieve. */ function admin_menu_cache_get($cid) { static $cache = array(); if (!variable_get('admin_menu_cache_client', TRUE)) { return FALSE; } if (!array_key_exists($cid, $cache)) { $cache[$cid] = cache_get($cid, 'cache_admin_menu'); if ($cache[$cid] && isset($cache[$cid]->data)) { $cache[$cid] = $cache[$cid]->data; } } return $cache[$cid]; } /** * Store a client-side cache hash in persistent cache. * * This should only be used for client-side cache hashes. Use cache_menu for * administration menu content. * * @param $cid * The cache ID of the data to retrieve. */ function admin_menu_cache_set($cid, $data) { if (variable_get('admin_menu_cache_client', TRUE)) { cache_set($cid, $data, 'cache_admin_menu'); } } /** * Menu callback; Output administration menu for HTTP caching via AJAX request. */ function admin_menu_js_cache($hash = NULL) { // Get the rendered menu. $content = admin_menu_output(); // @todo According to http://www.mnot.net/blog/2006/05/11/browser_caching, // IE will only cache the content when it is compressed. // Determine if the client accepts gzipped data. if (isset($_SERVER['HTTP_ACCEPT_ENCODING'])) { if (strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'x-gzip') !== FALSE) { $encoding = 'x-gzip'; } elseif (strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== FALSE) { $encoding = 'gzip'; } // Perform gzip compression when: // 1) the user agent supports gzip compression. // 2) Drupal page compression is enabled. Sites may wish to perform the // compression at the web server level (e.g. using mod_deflate). // 3) PHP's zlib extension is loaded, but zlib compression is disabled. if (isset($encoding) && variable_get('page_compression', TRUE) && extension_loaded('zlib') && zlib_get_coding_type() === FALSE) { // Use Vary header to tell caches to keep separate versions of the menu // based on user agent capabilities. header('Vary: Accept-Encoding'); // Since we manually perform compression, we are also responsible to // send a proper encoding header. header('Content-Encoding: ' . $encoding); $content = gzencode($content, 9, FORCE_GZIP); } } $expires = REQUEST_TIME + (3600 * 24 * 365); header('Expires: ' . gmdate(DATE_RFC1123, $expires)); header('Last-Modified: ' . gmdate(DATE_RFC1123, REQUEST_TIME)); header('Cache-Control: max-age=' . $expires); header('Content-Length: ' . strlen($content)); // Suppress Devel module. $GLOBALS['devel_shutdown'] = FALSE; echo $content; exit; } /** * Implements hook_admin_menu_replacements(). */ function admin_menu_admin_menu_replacements() { $items = array(); if ($user_count = admin_menu_get_user_count()) { $items['.admin-menu-users a'] = $user_count; } return $items; } /** * Return count of online anonymous/authenticated users. * * @see user_block(), user.module */ function admin_menu_get_user_count() { $interval = REQUEST_TIME - variable_get('user_block_seconds_online', 900); $count_anon = admin_menu_session_count($interval, TRUE); $count_auth = admin_menu_session_count($interval, FALSE); return t('@count-anon / @count-auth', array('@count-anon' => $count_anon, '@count-auth' => $count_auth)); } /** * Counts how many users are active on the site. * * Counts how many users have sessions which have been active since the * specified time. Can count either anonymous sessions or authenticated * sessions. * * @param $timestamp * A Unix timestamp. Users who have been active since this time will be * counted. The default is 0, which counts all existing sessions. * @param $anonymous * TRUE counts only anonymous users. FALSE counts only authenticated users. * * @return * The number of users with sessions. * * @todo There are mostly no anonymous sessions anymore. Split this into a * separate module providing proper user statistics. */ function admin_menu_session_count($timestamp = 0, $anonymous = TRUE) { $query = db_select('sessions'); $query->addExpression('COUNT(sid)', 'count'); $query->condition('timestamp', $timestamp, '>='); $query->condition('uid', 0, $anonymous ? '=' : '>'); return $query->execute()->fetchField(); } /** * Build the administration menu output. */ function admin_menu_output() { if (!user_access('access administration menu') || admin_menu_suppress(FALSE)) { return; } global $user, $language; $cache_server_enabled = variable_get('admin_menu_cache_server', TRUE); $cid = 'admin_menu:' . session_id() . ':' . $language->language; // Do nothing at all here if the client supports client-side caching, the user // has a hash, and is NOT requesting the cache update path. Consult the hash // cache last, since it requires a DB request. // @todo Implement a sanity-check to prevent permanent double requests; i.e. // what if the client-side cache fails for any reason and performs a second // request on every page? if (!empty($_COOKIE['has_js']) && strpos($_GET['q'], 'js/admin_menu/cache') !== 0) { if (admin_menu_cache_get($cid)) { return; } } // Try to load and output administration menu from server-side cache. if ($cache_server_enabled) { $cache = cache_get($cid, 'cache_menu'); if ($cache && isset($cache->data)) { $content = $cache->data; } } // Rebuild the output. if (!isset($content)) { // Add site name as CSS class for development/staging theming purposes. We // leverage the cookie domain instead of HTTP_HOST to account for many (but // not all) multi-domain setups (e.g. language-based sub-domains). $class_site = 'admin-menu-site' . drupal_strtolower(preg_replace('/[^a-zA-Z0-9-]/', '-', $GLOBALS['cookie_domain'])); // @todo Always output container to harden JS-less support. $content['#prefix'] = '
'; // Load menu builder functions. module_load_include('inc', 'admin_menu'); // Add administration menu. $content['menu'] = admin_menu_links_menu(admin_menu_tree('management')); $content['menu']['#theme'] = 'admin_menu_links'; // Ensure the menu tree is rendered between the icon and user links. $content['menu']['#weight'] = 0; // Add menu additions. $content['icon'] = admin_menu_links_icon(); $content['user'] = admin_menu_links_user(); // Allow modules to enhance the menu. // Uses '_output' suffix for consistency with the alter hook (see below). foreach (module_implements('admin_menu_output_build') as $module) { $function = $module . '_admin_menu_output_build'; $function($content); } // Allow modules to alter the output. // The '_output' suffix is required to prevent hook implementation function // name clashes with Admin module. drupal_alter('admin_menu_output', $content); $content = drupal_render($content); // Cache the menu for this user. if ($cache_server_enabled) { cache_set($cid, $content, 'cache_menu'); } } // Store the new hash for this user. if (!empty($_COOKIE['has_js'])) { admin_menu_cache_set($cid, md5($content)); } return $content; } /** * Implements hook_admin_menu_output_build(). */ function admin_menu_admin_menu_output_build(&$content) { // Add "Add content" link tree on the top level. $link = db_query("SELECT * FROM {menu_links} WHERE router_path = 'node/add' AND module = 'system'")->fetchAssoc(); $conditions = array(); for ($i = 1; $i < MENU_MAX_DEPTH; $i++) { if (!empty($link["p$i"])) { $conditions["p$i"] = $link["p$i"]; } } $tree = menu_build_tree($link['menu_name'], array( 'conditions' => $conditions, 'min_depth' => $link['depth'], )); $links = admin_menu_links_menu($tree); if (!empty($links)) { $key = key($links); $links[$key]['#weight'] = -100; $content['menu'] += $links; } } /** * Implements hook_admin_menu_output_alter(). */ function admin_menu_admin_menu_output_alter(&$content) { foreach ($content['menu'] as $key => $link) { // Move local tasks on 'admin' into icon menu. if ($link['#href'] == 'admin/tasks' || $link['#href'] == 'admin/index') { $content['icon']['icon'][$key] = $link; unset($content['menu'][$key]); } } } /** * Render a themed list of links. * * @param $variables * - elements: A renderable array of links using the following keys: * - #attributes: Optional array of attributes for the list item, processed * via drupal_attributes(). * - #title: Title of the link, passed to l(). * - #href: Optional path of the link, passed to l(). When omitted, the * element's '#title' is rendered without link. * - #description: Optional alternative text for the link, passed to l(). * - #options: Optional alternative text for the link, passed to l(). * The array key of each child element itself is passed as path for l(). * - depth: Current recursion level; internal use only. */ function theme_admin_menu_links($variables) { $destination = &drupal_static('admin_menu_destination'); $elements = $variables['elements']; $depth = (isset($variables['depth']) ? $variables['depth'] : 0); if (!isset($destination)) { $destination = drupal_get_destination(); $destination = $destination['destination']; } // The majority of items in the menu are sorted already, but since modules // may add or change arbitrary items anywhere, there is no way around sorting // everything again. element_sort() is not sufficient here, as it // intentionally retains the order of elements having the same #weight, // whereas menu links are supposed to be ordered by #weight and #title. uasort($elements, 'admin_menu_element_sort'); $elements['#sorted'] = TRUE; $output = ''; $depth_child = $depth + 1; foreach (element_children($elements) as $path) { // Early-return nothing if user does not have access. if (isset($elements[$path]['#access']) && !$elements[$path]['#access']) { continue; } $elements[$path] += array( '#attributes' => array(), '#options' => array(), ); // Render children to determine whether this link is expandable. if (isset($elements[$path]['#type']) || isset($elements[$path]['#theme'])) { $elements[$path]['#admin_menu_depth'] = $depth_child; $elements[$path]['#children'] = drupal_render($elements[$path]); } else { $elements[$path]['#children'] = theme('admin_menu_links', array('elements' => $elements[$path], 'depth' => $depth_child)); if (!empty($elements[$path]['#children'])) { $elements[$path]['#attributes']['class'][] = 'expandable'; } if (isset($elements[$path]['#attributes']['class'])) { $elements[$path]['#attributes']['class'] = $elements[$path]['#attributes']['class']; } } $link = ''; if (isset($elements[$path]['#href'])) { // Strip destination query string from href attribute and apply a CSS class // for our JavaScript behavior instead. if (isset($elements[$path]['#options']['query']['destination']) && $elements[$path]['#options']['query']['destination'] == $destination) { unset($elements[$path]['#options']['query']['destination']); $elements[$path]['#options']['attributes']['class'][] = 'admin-menu-destination'; } $link .= l($elements[$path]['#title'], $elements[$path]['#href'], $elements[$path]['#options']); } elseif (isset($elements[$path]['#title'])) { if (!empty($elements[$path]['#options']['html'])) { $title = $elements[$path]['#title']; } else { $title = check_plain($elements[$path]['#title']); } if (!empty($elements[$path]['#options']['attributes'])) { $link .= '' . $title . ''; } else { $link .= $title; } } $output .= ''; $output .= $link . $elements[$path]['#children']; $output .= ''; } // @todo #attributes probably required for UL, but already used for LI. // @todo Use $element['#children'] here instead. if ($output && $depth > 0) { $output = "\n'; } return $output; } /** * Function used by uasort to sort structured arrays by #weight AND #title. */ function admin_menu_element_sort($a, $b) { // @see element_sort() $a_weight = (is_array($a) && isset($a['#weight'])) ? $a['#weight'] : 0; $b_weight = (is_array($b) && isset($b['#weight'])) ? $b['#weight'] : 0; if ($a_weight == $b_weight) { // @see element_sort_by_title() $a_title = (is_array($a) && isset($a['#title'])) ? $a['#title'] : ''; $b_title = (is_array($b) && isset($b['#title'])) ? $b['#title'] : ''; return strnatcasecmp($a_title, $b_title); } return ($a_weight < $b_weight) ? -1 : 1; } /** * Implements hook_translated_menu_link_alter(). * * Here is where we make changes to links that need dynamic information such * as the current page path or the number of users. */ function admin_menu_translated_menu_link_alter(&$item, $map) { global $user, $base_url; static $access_all; if ($item['menu_name'] != 'admin_menu') { return; } // Check whether additional development output is enabled. if (!isset($access_all)) { $access_all = variable_get('admin_menu_show_all', 0) && module_exists('devel'); } // Prepare links that would not be displayed normally. if ($access_all && !$item['access']) { $item['access'] = TRUE; // Prepare for http://drupal.org/node/266596 if (!isset($item['localized_options'])) { _menu_item_localize($item, $map, TRUE); } } // Don't waste cycles altering items that are not visible if (!$item['access']) { return; } // Add developer information to all links, if enabled. if ($extra = variable_get('admin_menu_display', 0)) { $item['title'] .= ' ' . $extra[0] . ': ' . $item[$extra]; } } /** * Implements hook_flush_caches(). * * Flush client-side caches. */ function admin_menu_flush_caches() { // Flush cached output of admin_menu. cache_clear_all('admin_menu:', 'cache_menu', TRUE); // Flush client-side cache hashes. // db_table_exists() required for SimpleTest. if (db_table_exists('cache_admin_menu')) { cache_clear_all('*', 'cache_admin_menu', TRUE); } } /** * Implements hook_form_FORM_ID_alter(). * * Form submit handler to flush client-side cache hashes when clean URLs are toggled. */ function admin_menu_form_system_clean_url_settings_alter(&$form, $form_state) { $form['#submit'][] = 'admin_menu_flush_caches'; } /** * Implements hook_form_FORM_ID_alter(). * * Extends Devel module with Administration menu developer settings. */ function admin_menu_form_devel_admin_settings_alter(&$form, &$form_state) { module_load_include('inc', 'admin_menu'); _admin_menu_form_devel_admin_settings_alter($form, $form_state); }