class UnitIndex in Booking and Availability Management API 8
Same name in this branch
- 8 src/Plugin/Deriver/UnitIndex.php \Drupal\bat_api\Plugin\Deriver\UnitIndex
- 8 src/Plugin/ServiceDefinition/UnitIndex.php \Drupal\bat_api\Plugin\ServiceDefinition\UnitIndex
Hierarchy
- class \Drupal\Component\Plugin\Derivative\DeriverBase implements DeriverInterface
- class \Drupal\bat_api\Plugin\Deriver\UnitIndex implements ContainerDeriverInterface
Expanded class hierarchy of UnitIndex
File
- src/
Plugin/ Deriver/ UnitIndex.php, line 13 - Contains \Drupal\bat_api\Plugin\Deriver\UnitIndex.php
Namespace
Drupal\bat_api\Plugin\DeriverView source
class UnitIndex extends DeriverBase implements ContainerDeriverInterface {
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('router.route_provider'), $container
->get('entity_type.manager'));
}
public function getDerivativeDefinitions($base_plugin_definition) {
$entity_type_id = 'calendar-units';
$this->derivatives[$entity_type_id] = $base_plugin_definition;
$this->derivatives[$entity_type_id]['title'] = t('Calendar units');
$this->derivatives[$entity_type_id]['description'] = t('Index of units objects.');
$this->derivatives[$entity_type_id]['category'] = t('Calendar units');
$this->derivatives[$entity_type_id]['path'] = "{$entity_type_id}";
return $this->derivatives;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DeriverBase:: |
protected | property | List of derivative definitions. | 1 |
DeriverBase:: |
public | function |
Gets the definition of a derivative plugin. Overrides DeriverInterface:: |
|
UnitIndex:: |
public static | function |
Creates a new class instance. Overrides ContainerDeriverInterface:: |
|
UnitIndex:: |
public | function |
Gets the definition of all derivatives of a base plugin. Overrides DeriverBase:: |