You are here

public function EntityFlagDeriver::getDerivativeDefinitions in farmOS 2.x

Gets the definition of all derivatives of a base plugin.

Parameters

array $base_plugin_definition: The definition array of the base plugin.

Return value

array An array of full derivative definitions keyed on derivative id.

Overrides EntityActionDeriverBase::getDerivativeDefinitions

See also

getDerivativeDefinition()

File

modules/core/flag/src/Plugin/Action/Derivative/EntityFlagDeriver.php, line 18

Class

EntityFlagDeriver
Provides an action deriver that finds entity types with a flag form.

Namespace

Drupal\farm_flag\Plugin\Action\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {
  if (empty($this->derivatives)) {
    $definitions = [];
    foreach ($this
      ->getApplicableEntityTypes() as $entity_type_id => $entity_type) {
      $definition = $base_plugin_definition;
      $definition['type'] = $entity_type_id;
      $definition['label'] = $this
        ->t('Flag @entity_type', [
        '@entity_type' => $entity_type
          ->getSingularLabel(),
      ]);
      $definition['confirm_form_route_name'] = 'entity.' . $entity_type
        ->id() . '.flag_form';
      $definitions[$entity_type_id] = $definition;
    }
    $this->derivatives = $definitions;
  }
  return $this->derivatives;
}