registration_type.entity.inc in Entity Registration 7.2
Same filename and directory in other branches
The class used for model type entities
File
lib/registration_type.entity.incView 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
Name | Description |
---|---|
RegistrationType | @file The class used for model type entities |