You are here

class RegistrationTypeController in Entity Registration 8.2

Same name in this branch
  1. 8.2 lib/registration_type.controller.inc \RegistrationTypeController
  2. 8.2 src/RegistrationTypeController.php \Drupal\registration\RegistrationTypeController
Same name and namespace in other branches
  1. 7.2 lib/registration_type.controller.inc \RegistrationTypeController
  2. 7 lib/registration_type.controller.inc \RegistrationTypeController

@file The controller class used for registration type entities

Hierarchy

Expanded class hierarchy of RegistrationTypeController

2 string references to 'RegistrationTypeController'
registration_entity_info in ./registration.module
Implements hook_entity_info().
registration_entity_info_alter in ./registration.module
Implements hook_entity_info_alter().

File

lib/registration_type.controller.inc, line 7
The controller class used for registration type entities

View source
class RegistrationTypeController extends EntityAPIControllerExportable {

  /**
   * Overridden.
   */
  public function export($entity, $prefix = '') {

    // Ensure our data properties are properly structured.
    $data_properties = array(
      'held_expire',
      'held_expire_state',
    );
    foreach ($data_properties as $data_property) {
      if (isset($entity->{$data_property})) {
        $entity->data[$data_property] = $entity->{$data_property};
        unset($entity->{$data_property});
      }
    }
    return parent::export($entity, $prefix);
  }

}

Members