RegistrationTypeUIController.php in Entity Registration 8.2
Same filename and directory in other branches
Registration Type UI controller.
Namespace
Drupal\registrationFile
src/RegistrationTypeUIController.phpView source
<?php
namespace Drupal\registration;
/**
* @file
* Registration Type UI controller.
*/
class RegistrationTypeUIController extends EntityDefaultUIController {
/**
* Overrides hook_menu() defaults.
*/
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;
}
}
Classes
Name | Description |
---|---|
RegistrationTypeUIController | @file Registration Type UI controller. |