You are here

public function RegistrationTypeUIController::hook_menu in Entity Registration 7

Same name and namespace in other branches
  1. 8.2 lib/registration_type.ui_controller.inc \RegistrationTypeUIController::hook_menu()
  2. 7.2 lib/registration_type.ui_controller.inc \RegistrationTypeUIController::hook_menu()

Overrides hook_menu() defaults.

Overrides EntityDefaultUIController::hook_menu

File

lib/registration_type.ui_controller.inc, line 12
Registration Type UI controller.

Class

RegistrationTypeUIController
@file Registration Type UI controller.

Code

public function hook_menu() {
  $items = parent::hook_menu();
  $items[$this->path]['description'] = t('Manage registration entity types, including adding and removing fields and the display of fields.');
  return $items;
}