You are here

function emfield_menu in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 5 emfield.module \emfield_menu()
  2. 6 emfield.module \emfield_menu()
  3. 6.2 emfield.module \emfield_menu()

Implementation of hook_menu().

File

./emfield.module, line 11
Embedded Media Field is a CCK-based framework for embedding media files.

Code

function emfield_menu() {
  $items = array();

  // If we require legacy support, then load the old menu items.
  if (emfield_check_for_deprecated_modules()) {
    $items = _emfield_deprecated_menu();
  }
  return $items;
}