You are here

class UnitIndex in Booking and Availability Management API 8

Same name in this branch
  1. 8 src/Plugin/Deriver/UnitIndex.php \Drupal\bat_api\Plugin\Deriver\UnitIndex
  2. 8 src/Plugin/ServiceDefinition/UnitIndex.php \Drupal\bat_api\Plugin\ServiceDefinition\UnitIndex

Hierarchy

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\Deriver
View 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

Namesort descending Modifiers Type Description Overrides
DeriverBase::$derivatives protected property List of derivative definitions. 1
DeriverBase::getDerivativeDefinition public function Gets the definition of a derivative plugin. Overrides DeriverInterface::getDerivativeDefinition
UnitIndex::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
UnitIndex::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides DeriverBase::getDerivativeDefinitions