registration_handler_field_entity_registration_status.inc in Entity Registration 8.2
Same filename and directory in other branches
Display registration status for host entity.
File
modules/registration_views/includes/registration_handler_field_entity_registration_status.incView source
<?php
/**
* @file
* Display registration status for host entity.
*/
class registration_handler_field_entity_registration_status extends views_handler_field_entity {
function render($values) {
$entity = $this
->get_value($values);
list($entity_id) = entity_extract_ids($this->entity_type, $entity);
$status = registration_status($this->entity_type, $entity_id);
if (isset($status)) {
return $status ? t('Open', array(), array(
'context' => 'registration',
)) : t('Closed', array(), array(
'context' => 'registration',
));
}
}
}
Classes
Name | Description |
---|---|
registration_handler_field_entity_registration_status | @file Display registration status for host entity. |