You are here

registration_type.ui_controller.inc in Entity Registration 7.2

Registration Type UI controller.

File

lib/registration_type.ui_controller.inc
View source
<?php

/**
 * @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.