You are here

function mmenu_mmenu_theme in Mobile sliding menu 7.2

Same name and namespace in other branches
  1. 8 mmenu.module \mmenu_mmenu_theme()

Implements hook_mmenu_theme().

File

./mmenu.module, line 112
Primarily Drupal hooks and global API functions to manipulate mmenus.

Code

function mmenu_mmenu_theme() {
  $module_path = drupal_get_path('module', 'mmenu');
  return array(
    'mm-basic' => array(
      'name' => 'mm-basic',
      'title' => t('mm-basic'),
      'css' => array(
        $module_path . '/themes/mm-basic/styles/mm-basic.css',
      ),
    ),
    'mm-fresh' => array(
      'name' => 'mm-fresh',
      'title' => t('mm-fresh'),
      'css' => array(
        $module_path . '/themes/mm-fresh/styles/mm-fresh.css',
      ),
    ),
  );
}