You are here

function menu_fields_theme in Menu Item Fields 7

Implements hook_theme().

File

./menu_fields.module, line 22
Main file contain hooks/functions.

Code

function menu_fields_theme($existing, $type, $theme, $path) {
  return array(
    'entity__menu_fields' => array(
      'base hook' => 'entity',
      'render element' => 'elements',
      'template' => 'entity--menu-fields',
      'path' => $path . '/templates',
      'pattern' => 'entity__menu_fields__',
    ),
    'menu_fields_menu_link' => array(
      'render element' => 'elements',
    ),
    'menu_fields_menu_tree' => array(
      'render element' => 'tree',
    ),
  );
}