You are here

function mobile_navigation_get_plugins in Mobile Navigation 7.2

Same name and namespace in other branches
  1. 8 mobile_navigation.module \mobile_navigation_get_plugins()
  2. 7 mobile_navigation.module \mobile_navigation_get_plugins()

Helper function for getting Mobile navigation plugin options.

1 call to mobile_navigation_get_plugins()
mobile_navigation_configuration_form in ./mobile_navigation.admin.inc
Mobile navigation admin form definition.

File

./mobile_navigation.inc, line 27
Mobile Navigation helper functions.

Code

function mobile_navigation_get_plugins() {
  return array(
    'none' => t('<strong>None:</strong> No navigation plugin. Simply slide showing the menu, without any special behavior on its contents.'),
    'accordion' => t('<strong>Accordion:</strong> Show menu and its submenus in a organized accordion structure. (Aplies only when the markup for the complete menu is displayed, including submenus.)'),
    'slide_navigation' => t('<strong>Slide Navigation:</strong> Show submenus using a slide effect when opening submenus. Only current submenu items are shown, with a go back option at the top.'),
  );
}