You are here

function mobile_navigation_get_effects in Mobile Navigation 8

Same name and namespace in other branches
  1. 7.2 mobile_navigation.inc \mobile_navigation_get_effects()
  2. 7 mobile_navigation.module \mobile_navigation_get_effects()

Helper function for getting Mobile navigation effects.

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

File

./mobile_navigation.module, line 24
Mobile Navigation primary module file.

Code

function mobile_navigation_get_effects() {
  return array(
    'expand_down' => t('Expand Down right where the menu button is located.'),
    'fixed_top' => t('Top Fixed: Menu shows up over the document, comming from the top.'),
    'fixed_left' => t('Left Fixed: Menu shows up over the document, comming from the left.'),
    'fixed_right' => t('Right Fixed: Menu shows up over the document, comming from the right.'),
    'fixed_bottom' => t('Bottom Fixed: Menu shows up over the document, comming from the bottom.'),
    'drawer_left' => t('Left Drawer: Menu shows up pushing the document, comming from the left.'),
    'drawer_right' => t('Right Drawer: Menu shows up pushing the document, comming from the right.'),
    'drawer_top' => t('Top Drawer: Menu shows up pushing down the document, comming from the top.'),
  );
}