You are here

class RegistrationType in Entity Registration 8.2

Same name in this branch
  1. 8.2 lib/registration_type.entity.inc \RegistrationType
  2. 8.2 src/RegistrationType.php \Drupal\registration\RegistrationType
  3. 8.2 src/Plugin/Field/FieldFormatter/RegistrationType.php \Drupal\registration\Plugin\Field\FieldFormatter\RegistrationType
Same name and namespace in other branches
  1. 7.2 lib/registration_type.entity.inc \RegistrationType
  2. 7 lib/registration_type.entity.inc \RegistrationType

@file The class used for model type entities

Hierarchy

Expanded class hierarchy of RegistrationType

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

File

lib/registration_type.entity.inc, line 7
The class used for model type entities

View source
class RegistrationType extends Entity {
  public $name;
  public $label;
  public $locked;
  public $default_state;
  public $data;
  public $registrant_entity_type;
  public $registrant_bundle;
  public $registrant_email_property;
  public function __construct($values = array()) {
    parent::__construct($values, 'registration_type');
  }

}

Members