'SimpleMenu', 'description' => 'Select the menu to display.', 'page callback' => 'drupal_get_form', 'page arguments' => array('simplemenu_admin_settings'), 'access arguments' => array('administer simplemenu'), 'file' => 'simplemenu.admin.inc', ); return $items; } /** * Is simplemenu enabled for this page request? */ function simplemenu_enabled() { static $enabled; if (!isset($enabled)) { global $theme; $exclusions = variable_get('simplemenu_exclusions', array()); $enabled = (user_access('view simplemenu') && (!isset($exclusions[$theme]) || !$exclusions[$theme]) && _simplemenu_page_visibility() && _simplemenu_superuser_active()); } return $enabled; } /** * Implementation of hook_init(). */ function simplemenu_init() { // do a simple access check here, since theme isn't available to check yet if (user_access('view simplemenu') && simplemenu_enabled()) { $simplemenu_path = drupal_get_path('module', 'simplemenu'); $css_path = file_create_path('css'); // same path as concatenated Core CSS if (file_check_directory($css_path, FILE_CREATE_DIRECTORY)) { // The old way had a "static" CSS which meant that we could not easily // offer options to the users. //drupal_add_css($simplemenu_path .'/simplemenu.css'); $fix = variable_get('simplemenu_fix', 'scroll'); // XXX add a variable simplemenu_update which is set to TRUE whenever // the settings get modified and false here $output_filename = variable_get('simplemenu_css_filename', ''); if (!$output_filename) { $tags = array( '@MENUBAR_ZINDEX@' => simplemnu_get_zindex('simplemenu_menubar_zindex', 9999), '@DROPDOWN_ZINDEX@' => simplemnu_get_zindex('simplemenu_dropdown_zindex', 9999), ); switch ($fix) { case 'top': $tags['@FIX@'] = "position: fixed;\n top: 0;"; break; case 'bottom': $tags['@FIX@'] = "position: fixed;\n bottom: 0;"; break; default: // scroll $tags['@FIX@'] = 'position: relative;'; break; } $css = file_get_contents($simplemenu_path . '/simplemenu.css.tpl'); $css = strtr($css, $tags); $css_md5 = md5($css); $output_filename = $css_path . '/simplemenu-' . $css_md5 . '.css'; if (!file_exists($output_filename)) { // new content, create a new file file_put_contents($output_filename, $css); } else { // this call is rather ugly, but we must make sure that the // system cache will take the current Simplemenu CSS in account _drupal_flush_css_js(); } //variable_set('simplemenu_css_filename', $output_filename); } drupal_add_css($output_filename); } else { drupal_set_message(t('Simplemenu could not create the folder @path in order to save the dynamic CSS data.', array('@path' => $css_path)), 'error'); // use a default that cannot react to the dynamic changes... drupal_add_css($simplemenu_path .'/simplemenu.css'); } // we want to put the simplemenu theme CSS first // so we can change some CSS entries dynamically // but at this time the simplemenu.css is used to // reset many of the CSS entries... Hmmm... $simplemenu_theme = variable_get('simplemenu_theme', 'original'); $theme_file = $simplemenu_path .'/themes/'. $simplemenu_theme .'/'. $simplemenu_theme .'.css'; if (is_file($theme_file)) { drupal_add_css($theme_file); } switch ($fix) { case 'top': $element = 'body'; $placement = 'prepend'; break; case 'bottom': $element = 'body'; $placement = 'append'; break; default: // 'scroll' // let user defined other elements when not fixed $element = variable_get('simplemenu_element', 'body'); $placement = variable_get('simplemenu_element_method', 'prepend'); break; } $settings = array( 'effect' => variable_get('simplemenu_effect', 'opacity'), 'effectSpeed' => variable_get('simplemenu_effect_speed', 'fast'), 'element' => $element, 'placement' => $placement, 'hideDelay' => variable_get('simplemenu_hide_delay', 800), 'detectPopup' => variable_get('simplemenu_detect_popup', 1), ); drupal_add_js(array('simplemenu' => $settings), 'setting'); drupal_add_js($simplemenu_path . '/simplemenu.js'); $superfish = variable_get('simplemenu_superfish_version', 'superfish-1.4.1.js'); drupal_add_js($simplemenu_path . '/' . $superfish); } } /** * \brief Retrieve the zindex for the CSS files. * * This function retrieves a z-index from a Drupal variable and * transform it to fit in a CSS file. * * \param[in] $name The name of the z-index variable to read. * \param[in] $default The default value to use when the variable is not defined. * * \return A string representing the current value of the specified z-index. */ function simplemnu_get_zindex($name, $default) { $zindex = variable_get($name, $default); if ($zindex == -1) { $zindex = ''; } else { $zindex = 'z-index: ' . $zindex . ';'; } return $zindex; } /** * Implementation of hook_footer(). * * This has been broken off of simplemenu_init() because simplemenu_get_menu() * calls simplemenu_menu_tree() which calls menu_tree_output() which has several * calls to theme(). This initializes the theme system too early causing hard * to track bugs. * * @see http://drupal.org/node/219910 */ function simplemenu_footer() { if (simplemenu_enabled()) { $simplemenu = drupal_to_js(simplemenu_get_menu()); $path = base_path() . drupal_get_path('module', 'simplemenu'); $output = "\n"; return $output; } } /** * Implementation of hook_perm(). */ function simplemenu_perm() { return array('view simplemenu', 'administer simplemenu'); } /** * Render an HTML list of links for a given menu. */ function simplemenu_get_menu() { // if a user turned off menu module but SimpleMenu was previously set // reset variable so a menu appears $menu_name = module_exists('menu') ? variable_get('simplemenu_menu', 'navigation:0') : 'navigation:0'; $menu = simplemenu_menu_tree($menu_name); if (!$menu) { $menu = '
'; } // This is ugly, I know, but it is the only way I can see to get the additional // links inside the