You are here

function responsive_navigation_theme in Responsive Navigation 7

Implements hook_theme().

File

./responsive_navigation.module, line 230

Code

function responsive_navigation_theme() {
  return array(
    'responsive_navigation_tree' => array(
      'variables' => array(
        'menu_name' => NULL,
        'mlid' => NULL,
        'depth' => -1,
        'menu' => NULL,
        'respect_expanded' => 0,
      ),
    ),
    'responsive_navigation_build' => array(
      'variables' => array(
        'menu' => NULL,
        'depth' => -1,
        'trail' => NULL,
        'respect_expanded' => 0,
      ),
    ),
    'responsive_navigation' => array(
      'variables' => array(
        'id' => NULL,
        'menu_name' => NULL,
        'mlid' => NULL,
        'depth' => -1,
        'respect_expanded' => 0,
        'menu' => NULL,
      ),
    ),
    'responsive_navigation_main_menu' => array(
      'variables' => array(
        'depth' => -1,
      ),
    ),
    'responsive_navigation_secondary_menu' => array(
      'variables' => array(
        'depth' => -1,
      ),
    ),
  );
}