You are here

function hook_mmenu_theme in Mobile sliding menu 8

Same name and namespace in other branches
  1. 7.2 mmenu.api.php \hook_mmenu_theme()

Allows modules to add more mmenu themes.

1 function implements hook_mmenu_theme()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

mmenu_mmenu_theme in ./mmenu.module
Implements hook_mmenu_theme().
1 invocation of hook_mmenu_theme()
mmenu_theme_list in ./mmenu.module
Gets a list of available mmenu themes.

File

./mmenu.api.php, line 67
Hooks provided by mmenu module.

Code

function hook_mmenu_theme() {
  return array(
    'mm-basic' => array(
      'name' => 'mm-basic',
      'title' => t('mm-basic'),
      'library' => array(
        'examples/examples.mm_basic',
      ),
    ),
  );
}