function emfield_menu in Embedded Media Field 6.3
Same name and namespace in other branches
- 5 emfield.module \emfield_menu()
- 6 emfield.module \emfield_menu()
- 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;
}