You are here

function _void_menu_menu in Void Menu 8.x

Same name and namespace in other branches
  1. 7.x void_menu.module \_void_menu_menu()

Empty callback ensures Drupal menu system accepts Void placeholders.

1 string reference to '_void_menu_menu'
void_menu_menu in ./void_menu.module
Implements hook_menu().

File

./void_menu.module, line 53
Creates placeholders for menu items to use special paths, including but not limited to javascript function calls. ------------------------------------------ Written by William Hall - www.mrtheme.com Based off of special_menu_items and…

Code

function _void_menu_menu() {
  return drupal_not_found();
}