You are here

menu_link.install in Menu Link (Field) 2.0.x

Same filename and directory in other branches
  1. 8 menu_link.install
  2. 7 menu_link.install

File

menu_link.install
View source
<?php

/**
 * @file
 */

/**
 * Implements hook_theme().
 */
function menu_link_theme($existing, $type, $theme, $path) {
  return [
    'menu_link_element' => [
      'variables' => [
        'menu_name' => NULL,
        'items' => [],
        'attributes' => [],
      ],
    ],
  ];
}

Functions

Namesort descending Description
menu_link_theme Implements hook_theme().