You are here

RegistrationTypeUIController.php in Entity Registration 8.2

Same filename and directory in other branches
  1. 8 src/RegistrationTypeUIController.php

Registration Type UI controller.

File

src/RegistrationTypeUIController.php
View 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

Namesort descending Description
RegistrationTypeUIController @file Registration Type UI controller.