public function RegistrationTypeUIController::hook_menu in Entity Registration 8
Same name and namespace in other branches
- 8.2 src/RegistrationTypeUIController.php \Drupal\registration\RegistrationTypeUIController::hook_menu()
Overrides hook_menu() defaults.
File
- src/
RegistrationTypeUIController.php, line 13 - Registration Type UI controller.
Class
- RegistrationTypeUIController
- @file Registration Type UI controller.
Namespace
Drupal\registrationCode
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;
}