You are here

class RegistrationState in Entity Registration 8.2

Same name in this branch
  1. 8.2 lib/registration_state.entity.inc \RegistrationState
  2. 8.2 src/RegistrationState.php \Drupal\registration\RegistrationState
Same name and namespace in other branches
  1. 7.2 lib/registration_state.entity.inc \RegistrationState
  2. 7 lib/registration_state.entity.inc \RegistrationState

@file The class used for registration state entities

Hierarchy

Expanded class hierarchy of RegistrationState

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

File

lib/registration_state.entity.inc, line 7
The class used for registration state entities

View source
class RegistrationState extends Entity {
  public $name, $label, $description, $default_state, $active, $held, $show_on_form, $weight;
  public function __construct($values = array()) {
    parent::__construct($values, 'registration_state');
  }

}

Members