You are here

registration_type.entity.inc in Entity Registration 7.2

The class used for model type entities

File

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

/**
 * @file
 * The class used for model type entities
 */
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');
  }

}

Classes

Namesort descending Description
RegistrationType @file The class used for model type entities