You are here

class RegistrationTypeUIController in Entity Registration 8.2

Same name in this branch
  1. 8.2 lib/registration_type.ui_controller.inc \RegistrationTypeUIController
  2. 8.2 src/RegistrationTypeUIController.php \Drupal\registration\RegistrationTypeUIController
Same name and namespace in other branches
  1. 7.2 lib/registration_type.ui_controller.inc \RegistrationTypeUIController
  2. 7 lib/registration_type.ui_controller.inc \RegistrationTypeUIController

@file Registration Type UI controller.

Hierarchy

Expanded class hierarchy of RegistrationTypeUIController

1 string reference to 'RegistrationTypeUIController'
registration_entity_info in ./registration.module
Implements hook_entity_info().

File

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

View source
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;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RegistrationTypeUIController::hook_menu public function Overrides hook_menu() defaults.