function emwave_menu in Embedded Media Field 6.2
Same name and namespace in other branches
- 6.3 contrib/emwave/emwave.module \emwave_menu()
- 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;
}