You are here

public function EntityformTypeUIController::hook_menu in Entityform 7.2

Same name and namespace in other branches
  1. 7 entityform_type.admin.inc \EntityformTypeUIController::hook_menu()

Overrides hook_menu() defaults.

Overrides EntityDefaultUIController::hook_menu

File

./entityform_type.admin.inc, line 16
Entityform type editing UI.

Class

EntityformTypeUIController
UI controller.

Code

public function hook_menu() {
  $items = parent::hook_menu();
  $items[$this->path]['description'] = 'Manage entityform entity types, including adding and removing fields and the display of fields.';
  $items[$this->path]['type'] = MENU_NORMAL_ITEM;
  $items[$this->path . '/manage/%entity_object/edit']['context'] = MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE;
  return $items;
}