You are here

function emimage_menu in Embedded Media Field 6.2

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

Implementation of hook_menu().

File

contrib/emimage/emimage.module, line 24
Embedded Image module is a handler for images hosted on an external site.

Code

function emimage_menu() {
  $items = module_invoke('emfield', 'provider_menus', 'emimage');
  return $items;
}