url($last['href'])), 'setting'); } } } } /** * Implementation of hook_block(). */ function admin_block($op = 'list', $delta = 0, $edit = array()) { switch ($op) { case 'list': $blocks = array(); $blocks['create'] = array('info' => t('Create content'), 'admin' => TRUE); if (module_exists('menu')) { $blocks['menu'] = array('info' => t('Administration menu'), 'admin' => TRUE); } if (module_exists('devel')) { $blocks['devel'] = array('info' => t('Devel'), 'admin' => TRUE); } return $blocks; case 'view': switch ($delta) { case 'create': $item = menu_get_item('node/add'); $links = system_admin_menu_block($item); if (!empty($links)) { $menu = array(); foreach ($links as $key => $link) { $menu[$key] = array('link' => $link, 'below' => FALSE); } return array( 'subject' => !empty($item['title']) ? $item['title'] : t('Create content'), 'content' => theme('admin_menu_tree_output', $menu), ); } break; case 'menu': $item = menu_get_item('admin'); if ($item && $item['access']) { return array( 'subject' => !empty($item['title']) ? $item['title'] : t('Administer'), 'content' => theme('admin_menu_tree_output', menu_tree_all_data('admin')), ); } break; case 'devel': module_load_include('inc', 'admin', 'includes/admin.devel'); return admin_block_devel(); } break; } } /** * Implementation of hook_elements(). */ function admin_elements() { return array( 'admin_panes' => array('#value' => ''), ); } /** * Implementation of hook_menu_alter(). */ function admin_menu_alter(&$items) { // Move admin theme item under ours as a local task. $items['admin/settings/admin/theme'] = $items['admin/settings/admin']; $items['admin/settings/admin/theme']['type'] = MENU_LOCAL_TASK; $items['admin/settings/admin/theme']['weight'] = 10; // Generate our own admin settings page. $items['admin/settings/admin'] = $items['admin/settings/admin/settings'] = array( 'title' => 'Administration tools', 'description' => 'Settings for site administration tools.', 'page callback' => 'drupal_get_form', 'page arguments' => array('admin_settings_form'), 'access callback' => 'user_access', 'access arguments' => array('administer site configuration'), 'type' => MENU_NORMAL_ITEM, 'file' => 'admin.admin.inc', 'module' => 'admin', ); $items['admin/settings/admin/settings']['title'] = 'Settings'; $items['admin/settings/admin/settings']['type'] = MENU_DEFAULT_LOCAL_TASK; foreach ($items as $path => $item) { // Move all admin/* items to admin menu links except local tasks, callbacks. $args = explode('/', $path); if ($path === 'admin' || (($item['type'] & MENU_NORMAL_ITEM) && $args && $args[0] === 'admin')) { $items[$path]['menu_name'] = 'admin'; } // Smarter access callback for poorly checked landing pages if (!empty($item['access arguments']) && !empty($item['page callback']) && $item['access arguments'] === array('access administration pages') && in_array($item['page callback'], array('system_admin_menu_block_page', 'system_settings_overview'))) { $items[$path]['access callback'] = 'admin_landing_page_access'; $items[$path]['access arguments'] = array($path); } } } /** * Menu access callback for admin landing pages. */ function admin_landing_page_access($path) { static $paths; if (!isset($paths[$path])) { $item = db_fetch_array(db_query("SELECT mlid, menu_name FROM {menu_links} ml WHERE ml.router_path = '%s' AND module = 'system'", $path)); $result = db_query(" SELECT m.load_functions, m.to_arg_functions, m.access_callback, m.access_arguments, m.page_callback, m.page_arguments, m.title, m.title_callback, m.title_arguments, m.type, m.description, ml.* FROM {menu_links} ml LEFT JOIN {menu_router} m ON ml.router_path = m.path WHERE ml.plid = %d AND ml.menu_name = '%s' AND hidden = 0", $item['mlid'], $item['menu_name']); $paths[$path] = FALSE; while ($item = db_fetch_array($result)) { _menu_link_translate($item); if ($item['access']) { $paths[$path] = TRUE; break; } } } return $paths[$path]; } /** * Implementation of hook_perm(). */ function admin_perm() { return array('use admin toolbar'); } /** * Implementation of hook_theme(). */ function admin_theme($cache, $type, $theme, $path) { $path = drupal_get_path('module', 'admin'); $items['admin_tab'] = array( 'arguments' => array('tab' => array(), 'class' => ''), 'path' => $path . '/theme', 'file' => 'theme.inc', ); $items['admin_toolbar'] = array( 'arguments' => array( 'blocks' => array(), 'position' => 'ne', 'layout' => 'horizontal' ), 'template' => 'admin-toolbar', 'path' => $path . '/theme', 'file' => 'theme.inc', ); $items['admin_menu_tree_output'] = array( 'arguments' => array('menu' => array()), 'path' => $path . '/theme', 'file' => 'theme.inc', ); $items['admin_menu_item_link'] = array( 'arguments' => array('item' => array()), 'path' => $path . '/theme', 'file' => 'theme.inc', ); $items['admin_panes'] = array( 'arguments' => array('element' => array()), 'template' => 'admin-panes', 'path' => $path . '/theme', 'file' => 'theme.inc', ); return $items; } /** * Implementation of hook_theme_registry_alter(). */ function admin_theme_registry_alter(&$theme_registry) { // Add an additional page preprocess function prior to all others including template_preprocess_page() // so that our blocks can include JS files as needed. $position = array_search('admin_preprocess_pre_page', $theme_registry['page']['preprocess functions']); if ($position !== FALSE) { unset($theme_registry['page']['preprocess functions'][$position]); array_unshift($theme_registry['page']['preprocess functions'], 'admin_preprocess_pre_page'); } else { array_unshift($theme_registry['page']['preprocess functions'], 'admin_preprocess_pre_page'); } } /** * Get variable settings or fallback to defaults. */ function admin_get_settings($key = NULL) { static $settings; if (!isset($settings)) { // Try to gather what information we can from the cookie. // Note that this information should not be trusted in any // way for affecting *anything* but trivial changes to the site. $cookie = array(); if (isset($_REQUEST['DrupalAdminToolbar'])) { parse_str($_REQUEST['DrupalAdminToolbar'], $cookie); } $settings = variable_get('admin_toolbar', array()) + array( 'layout' => 'vertical', 'position' => 'nw', 'blocks' => admin_get_default_blocks(), 'expanded' => isset($cookie['expanded']) ? check_plain($cookie['expanded']) : 0, 'active_tab' => isset($cookie['activeTab']) ? check_plain($cookie['activeTab']) : 0, ); } if (isset($key)) { return isset($settings[$key]) ? $settings[$key] : FALSE; } return $settings; } /** * Get all blocks that have declared themselves visible in the admin toolbar by default. */ function admin_get_default_blocks($reset = FALSE) { $defaults = array(); foreach (module_implements('block') as $module) { $module_blocks = module_invoke($module, 'block', 'list'); if ($module_blocks) { foreach ($module_blocks as $delta => $info) { if (isset($info['admin'])) { $defaults["{$module}-{$delta}"] = "{$module}-{$delta}"; } } } } return $defaults; } /** * Set static cache for blocks enabled for the admin toolbar. */ function admin_set_admin_blocks($reset = FALSE) { static $blocks; if (!isset($blocks) || $reset) { $blocks = array(); if (user_access('use admin toolbar') && $bids = admin_get_settings('blocks')) { foreach ($bids as $bid) { list($module, $delta) = explode('-', $bid, 2); $block = module_invoke($module, 'block', 'view', $delta); if (!empty($block['content'])) { $blocks["{$module}-{$delta}"] = $block; } } } } return $blocks; } /** * Get wrapper around admin blocks set. */ function admin_get_admin_blocks($reset = FALSE) { return admin_set_admin_blocks($reset); } /** * Preprocessor that runs *before* template_preprocess_page(). */ function admin_preprocess_pre_page(&$vars) { admin_set_admin_blocks(); } /** * Implementation of hook_preprocess_page(). */ function admin_preprocess_page(&$vars) { $blocks = admin_get_admin_blocks(); if ($blocks) { $position = admin_get_settings('position'); $layout = admin_get_settings('layout'); $class = admin_get_settings('expanded') ? 'admin-expanded' : ''; $vars['admin'] = theme('admin_toolbar', $blocks, $position, $layout); $vars['body_classes'] .= " admin-{$position} admin-{$layout} {$class}"; } }