You are here

function mobile_navigation_get_effects in Mobile Navigation 7.2

Same name and namespace in other branches
  1. 8 mobile_navigation.module \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.inc, line 11
Mobile Navigation helper functions.

Code

function mobile_navigation_get_effects() {
  return array(
    'expand_down' => t('Expand Down right where the menu button is located.'),
    'modal_top' => t('Top Modal: Menu shows up over the document, comming from the top.'),
    'modal_left' => t('Left Modal: Menu shows up over the document, comming from the left.'),
    'modal_right' => t('Right Modal: Menu shows up over the document, comming from the right.'),
    'modal_bottom' => t('Bottom Modal: 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.'),
  );
}