function om_maximenu_theme in OM Maximenu 6
Same name and namespace in other branches
- 8 om_maximenu.module \om_maximenu_theme()
- 7 om_maximenu.module \om_maximenu_theme()
Implementation of hook_theme().
File
- ./
om_maximenu.module, line 211 - OM Maximenu.
Code
function om_maximenu_theme() {
return array(
'om_maximenu_links_order' => array(
'arguments' => array(
'form',
),
'file' => 'inc/om_maximenu.admin.inc',
),
'om_maximenu_blocks_attach' => array(
'arguments' => array(
'form',
),
'file' => 'inc/om_maximenu.blocks.inc',
),
'om_maximenu_wrapper' => array(
'template' => 'tpl/om-maximenu-wrapper',
'arguments' => array(
'links' => array(),
'content' => NULL,
),
),
'om_maximenu_content' => array(
'template' => 'tpl/om-maximenu-content',
'arguments' => array(
'block' => array(),
'module' => NULL,
'delta' => NULL,
'om_classes' => NULL,
'title' => NULL,
'block_title' => NULL,
),
),
'om_maximenu_submenu' => array(
'template' => 'tpl/om-maximenu-submenu',
'arguments' => array(
'links' => array(),
'menu_key' => 1,
),
),
'om_maximenu_submenu_links' => array(
'template' => 'tpl/om-maximenu-submenu-links',
'arguments' => 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',
'arguments' => array(
'content' => array(),
'maximenu_name' => NULL,
'key' => 0,
'skin' => NULL,
),
),
'om_maximenu_tabbed' => array(
'template' => 'tpl/om-maximenu-tabbed',
'arguments' => array(
'links' => array(),
'menu_key' => 1,
),
),
'om_maximenu_tabbed_links' => array(
'template' => 'tpl/om-maximenu-tabbed-links',
'arguments' => 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',
'arguments' => array(
'links' => array(),
'maximenu_name' => NULL,
),
),
'om_maximenu_modal' => array(
'template' => 'tpl/om-maximenu-modal',
'arguments' => array(
'links' => array(),
'menu_key' => 1,
),
),
'om_maximenu_modal_links' => array(
'template' => 'tpl/om-maximenu-modal-links',
'arguments' => 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',
'arguments' => array(
'links' => array(),
'maximenu_name' => NULL,
),
),
'om_maximenu_accordion' => array(
'template' => 'tpl/om-maximenu-accordion',
'arguments' => array(
'links' => array(),
'menu_key' => 1,
),
),
'om_maximenu_accordion_links' => array(
'template' => 'tpl/om-maximenu-accordion-links',
'arguments' => array(
'content' => array(),
'maximenu_name' => NULL,
'key' => 0,
),
),
'om_maximenu_accordion_content' => array(
'template' => 'tpl/om-maximenu-accordion-content',
'arguments' => array(
'content' => array(),
'maximenu_name' => NULL,
'key' => 0,
),
),
'om_maximenu_roundabout' => array(
'template' => 'tpl/om-maximenu-roundabout',
'arguments' => array(
'links' => array(),
'menu_key' => 1,
),
),
'om_maximenu_roundabout_links' => array(
'template' => 'tpl/om-maximenu-roundabout-links',
'arguments' => 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',
'arguments' => array(
'content' => array(),
'maximenu_name' => NULL,
'key' => 0,
),
),
);
}