class EventViewsData in Booking and Availability Management Tools for Drupal 8
Provides Views data for Event entities.
Hierarchy
- class \Drupal\views\EntityViewsData implements EntityHandlerInterface, EntityViewsDataInterface uses DeprecatedServicePropertyTrait, StringTranslationTrait
- class \Drupal\bat_event\Entity\EventViewsData implements EntityViewsDataInterface
Expanded class hierarchy of EventViewsData
File
- modules/
bat_event/ src/ Entity/ EventViewsData.php, line 16 - Contains \Drupal\bat_event\Entity\EventViewsData.
Namespace
Drupal\bat_event\EntityView source
class EventViewsData extends EntityViewsData implements EntityViewsDataInterface {
/**
* {@inheritdoc}
*/
public function getViewsData() {
$data = parent::getViewsData();
$data['event']['table']['base'] = [
'field' => 'id',
'title' => $this
->t('Event'),
'help' => $this
->t('The Event ID.'),
];
$data['event']['type']['field'] = [
'title' => $this
->t('Event Type'),
'help' => $this
->t('The event type label.'),
'id' => 'bat_event_handler_event_type_field',
];
$data['event']['duration'] = [
'field' => [
'title' => $this
->t('Duration'),
'help' => $this
->t("Event's duration."),
'id' => 'bat_event_handler_duration_field',
],
];
$data['event']['event_value'] = [
'title' => $this
->t('Value'),
'help' => $this
->t("Event's value."),
'field' => [
'id' => 'bat_event_handler_value_field',
],
];
$data['event']['blocking'] = [
'title' => $this
->t('Blocking'),
'help' => $this
->t("Event's blocking state."),
'filter' => [
'id' => 'bat_event_handler_blocking_filter',
],
];
$data['event']['start_fulldate'] = [
'title' => $this
->t('Start date'),
'help' => $this
->t('Date in the form of CCYYMMDD.'),
'argument' => [
'field' => 'start',
'id' => 'date_fulldate',
],
];
$data['event']['start_year_month'] = [
'title' => $this
->t('Start year + month'),
'help' => $this
->t('Date in the form of YYYYMM.'),
'argument' => [
'field' => 'start',
'id' => 'date_year_month',
],
];
$data['event']['start_year'] = [
'title' => $this
->t('Start year'),
'help' => $this
->t('Date in the form of YYYY.'),
'argument' => [
'field' => 'start',
'id' => 'date_year',
],
];
$data['event']['start_month'] = [
'title' => $this
->t('Start month'),
'help' => $this
->t('Date in the form of MM (01 - 12).'),
'argument' => [
'field' => 'start',
'id' => 'date_month',
],
];
$data['event']['start_day'] = [
'title' => $this
->t('Start day'),
'help' => $this
->t('Date in the form of DD (01 - 31).'),
'argument' => [
'field' => 'start',
'id' => 'date_day',
],
];
$data['event']['start_week'] = [
'title' => $this
->t('Start week'),
'help' => $this
->t('Date in the form of WW (01 - 53).'),
'argument' => [
'field' => 'start',
'id' => 'date_week',
],
];
$data['event']['end_fulldate'] = [
'title' => $this
->t('End date'),
'help' => $this
->t('Date in the form of CCYYMMDD.'),
'argument' => [
'field' => 'end',
'id' => 'date_fulldate',
],
];
$data['event']['end_year_month'] = [
'title' => $this
->t('End year + month'),
'help' => $this
->t('Date in the form of YYYYMM.'),
'argument' => [
'field' => 'end',
'id' => 'date_year_month',
],
];
$data['event']['end_year'] = [
'title' => $this
->t('End year'),
'help' => $this
->t('Date in the form of YYYY.'),
'argument' => [
'field' => 'end',
'id' => 'date_year',
],
];
$data['event']['end_month'] = [
'title' => $this
->t('End month'),
'help' => $this
->t('Date in the form of MM (01 - 12).'),
'argument' => [
'field' => 'end',
'id' => 'date_month',
],
];
$data['event']['end_day'] = [
'title' => $this
->t('End day'),
'help' => $this
->t('Date in the form of DD (01 - 31).'),
'argument' => [
'field' => 'end',
'id' => 'date_day',
],
];
$data['event']['end_week'] = [
'title' => $this
->t('End week'),
'help' => $this
->t('Date in the form of WW (01 - 53).'),
'argument' => [
'field' => 'end',
'id' => 'date_week',
],
];
return $data;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DeprecatedServicePropertyTrait:: |
public | function | Allows to access deprecated/removed properties. | |
EntityViewsData:: |
protected | property | ||
EntityViewsData:: |
protected | property | The entity field manager. | |
EntityViewsData:: |
protected | property | Entity type for this views data handler instance. | |
EntityViewsData:: |
protected | property | The entity type manager. | |
EntityViewsData:: |
protected | property | The field storage definitions for all base fields of the entity type. | |
EntityViewsData:: |
protected | property | The module handler. | |
EntityViewsData:: |
protected | property | The storage used for this entity type. | |
EntityViewsData:: |
protected | property | The translation manager. | |
EntityViewsData:: |
protected | function | Sets the entity links in case corresponding link templates exist. | |
EntityViewsData:: |
public static | function |
Instantiates a new instance of this entity handler. Overrides EntityHandlerInterface:: |
|
EntityViewsData:: |
protected | function | Gets the field storage definitions. | |
EntityViewsData:: |
public | function |
Gets the table of an entity type to be used as base table in views. Overrides EntityViewsDataInterface:: |
|
EntityViewsData:: |
protected | function | Puts the views data for a single field onto the views data. | |
EntityViewsData:: |
protected | function | Provides the views data for a given data type and schema field. | |
EntityViewsData:: |
protected | function | Processes the views data for an entity reference field. | |
EntityViewsData:: |
protected | function | Processes the views data for a language field. | |
EntityViewsData:: |
protected | function | Processes the views data for a text field with formatting. | |
EntityViewsData:: |
protected | function | Processes the views data for a UUID field. | |
EntityViewsData:: |
public | function | Constructs an EntityViewsData object. | |
EventViewsData:: |
public | function |
Returns views data for the entity type. Overrides EntityViewsData:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |