You are here

public function EntityReplicateActions::getDerivativeDefinitions in Replicate UI 8

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 DeriverBase::getDerivativeDefinitions

See also

getDerivativeDefinition()

File

src/Plugin/Derivative/EntityReplicateActions.php, line 53

Class

EntityReplicateActions

Namespace

Drupal\replicate_ui\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {
  $config = $this->configFactory
    ->get('replicate_ui.settings');
  foreach ($this->entityTypeManager
    ->getDefinitions() as $entity_type_id => $entity_type) {
    if ($entity_type instanceof ContentEntityTypeInterface && in_array($entity_type_id, $config
      ->get('entity_types')) && $entity_type
      ->hasLinkTemplate('canonical')) {
      $replicate_route_name = "entity.{$entity_type_id}.replicate";

      // Allow for exporting in things such as VBO by ensuring that the action
      // names will pass validation in ConfigBase.
      $safe_action_name = str_replace('.', '_', $replicate_route_name);
      $this->derivatives[$safe_action_name] = [
        'label' => $this
          ->t('Delete @entity_type', [
          '@entity_type' => $entity_type
            ->getLabel(),
        ]),
        'type' => $entity_type_id,
        'config_form_route_name' => "entity.{$entity_type_id}.replicate",
      ] + $base_plugin_definition;
    }
  }
  return parent::getDerivativeDefinitions($base_plugin_definition);
}