RegistrationType.php in Entity Registration 8
Same filename and directory in other branches
The class used for model type entities
Namespace
Drupal\registrationFile
src/RegistrationType.phpView source
<?php
namespace Drupal\registration;
/**
* @file
* The class used for model type entities
*/
class RegistrationType extends Entity {
public $name;
public $label;
public $locked;
public $default_state;
public $data;
public function __construct($values = array()) {
parent::__construct($values, 'registration_type');
}
}
Classes
Name | Description |
---|---|
RegistrationType | @file The class used for model type entities |