You are here

function om_maximenu_theme in OM Maximenu 7

Same name and namespace in other branches
  1. 8 om_maximenu.module \om_maximenu_theme()
  2. 6 om_maximenu.module \om_maximenu_theme()

Implementation of hook_theme().

File

./om_maximenu.module, line 246
OM Maximenu.

Code

function om_maximenu_theme() {
  return array(
    'om_maximenu_links_order' => array(
      'render element' => 'form',
      'file' => 'inc/om_maximenu.admin.inc',
    ),
    'om_maximenu_blocks_attach' => array(
      'render element' => 'form',
      'file' => 'inc/om_maximenu.blocks.inc',
    ),
    'om_maximenu_wrapper' => array(
      'template' => 'tpl/om-maximenu-wrapper',
      'variables' => array(
        'links' => array(),
        'content' => NULL,
      ),
    ),
    'om_maximenu_content' => array(
      'template' => 'tpl/om-maximenu-content',
      'variables' => array(
        'block' => array(),
        'module' => NULL,
        'delta' => NULL,
        'om_classes' => NULL,
        'title' => NULL,
        'block_title' => NULL,
      ),
    ),
    'om_maximenu_submenu' => array(
      'template' => 'tpl/om-maximenu-submenu',
      'variables' => array(
        'links' => array(),
        'menu_key' => 1,
      ),
    ),
    'om_maximenu_submenu_links' => array(
      'template' => 'tpl/om-maximenu-submenu-links',
      'variables' => array(
        'content' => array(),
        'maximenu_name' => NULL,
        'skin' => NULL,
        'disabled' => 0,
        'key' => 0,
        'code' => 0,
        'count' => 0,
        'total' => 1,
      ),
    ),
    'om_maximenu_submenu_content' => array(
      'template' => 'tpl/om-maximenu-submenu-content',
      'variables' => array(
        'content' => array(),
        'maximenu_name' => NULL,
        'key' => 0,
        'skin' => NULL,
      ),
    ),
    'om_maximenu_tabbed' => array(
      'template' => 'tpl/om-maximenu-tabbed',
      'variables' => array(
        'links' => array(),
        'menu_key' => 1,
      ),
    ),
    'om_maximenu_tabbed_links' => array(
      'template' => 'tpl/om-maximenu-tabbed-links',
      'variables' => array(
        'content' => array(),
        'maximenu_name' => NULL,
        'key' => 0,
        'code' => 0,
        'count' => 0,
        'total' => 1,
      ),
    ),
    'om_maximenu_tabbed_content' => array(
      'template' => 'tpl/om-maximenu-tabbed-content',
      'variables' => array(
        'links' => array(),
        'maximenu_name' => NULL,
      ),
    ),
    'om_maximenu_modal' => array(
      'template' => 'tpl/om-maximenu-modal',
      'variables' => array(
        'links' => array(),
        'menu_key' => 1,
      ),
    ),
    'om_maximenu_modal_links' => array(
      'template' => 'tpl/om-maximenu-modal-links',
      'variables' => array(
        'content' => array(),
        'maximenu_name' => NULL,
        'key' => 0,
        'code' => 0,
        'count' => 0,
        'total' => 1,
      ),
    ),
    'om_maximenu_modal_content' => array(
      'template' => 'tpl/om-maximenu-modal-content',
      'variables' => array(
        'links' => array(),
        'maximenu_name' => NULL,
      ),
    ),
    'om_maximenu_accordion' => array(
      'template' => 'tpl/om-maximenu-accordion',
      'variables' => array(
        'links' => array(),
        'menu_key' => 1,
      ),
    ),
    'om_maximenu_accordion_links' => array(
      'template' => 'tpl/om-maximenu-accordion-links',
      'variables' => array(
        'content' => array(),
        'maximenu_name' => NULL,
        'key' => 0,
      ),
    ),
    'om_maximenu_accordion_content' => array(
      'template' => 'tpl/om-maximenu-accordion-content',
      'variables' => array(
        'content' => array(),
        'maximenu_name' => NULL,
        'key' => 0,
      ),
    ),
    'om_maximenu_roundabout' => array(
      'template' => 'tpl/om-maximenu-roundabout',
      'variables' => array(
        'links' => array(),
        'menu_key' => 1,
      ),
    ),
    'om_maximenu_roundabout_links' => array(
      'template' => 'tpl/om-maximenu-roundabout-links',
      'variables' => array(
        'content' => array(),
        'maximenu_name' => NULL,
        'key' => 0,
        'code' => 0,
        'count' => 0,
        'total' => 1,
      ),
    ),
    'om_maximenu_roundabout_content' => array(
      'template' => 'tpl/om-maximenu-roundabout-content',
      'variables' => array(
        'content' => array(),
        'maximenu_name' => NULL,
        'key' => 0,
      ),
    ),
  );
}