You are here

function emwave_menu in Embedded Media Field 6.2

Same name and namespace in other branches
  1. 6.3 contrib/emwave/emwave.module \emwave_menu()
  2. 6 contrib/emwave/emwave.module \emwave_menu()

Implementation of hook_menu().

File

contrib/emwave/emwave.module, line 25
Embedded Wave module is a handler for waves hosted on an external site.

Code

function emwave_menu() {
  $items = array();
  $items += module_invoke('emfield', 'provider_menus', 'emwave');
  return $items;
}