DynamicLocalTasks.php in Workbench Moderation 8.2
File
src/Plugin/Derivative/DynamicLocalTasks.php
View source
<?php
namespace Drupal\workbench_moderation\Plugin\Derivative;
use Drupal\Component\Plugin\Derivative\DeriverBase;
use Drupal\Core\Config\Entity\ConfigEntityTypeInterface;
use Drupal\Core\Entity\ContentEntityTypeInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\StringTranslation\TranslationInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class DynamicLocalTasks extends DeriverBase implements ContainerDeriverInterface {
use StringTranslationTrait;
protected $basePluginId;
protected $entityTypeManager;
public function __construct($base_plugin_id, EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation) {
$this->entityTypeManager = $entity_type_manager;
$this->stringTranslation = $string_translation;
$this->basePluginId = $base_plugin_id;
}
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($base_plugin_id, $container
->get('entity_type.manager'), $container
->get('string_translation'));
}
public function getDerivativeDefinitions($base_plugin_definition) {
$this->derivatives = [];
foreach ($this
->moderatableEntityTypeDefinitions() as $entity_type_id => $entity_type) {
$this->derivatives["{$entity_type_id}.moderation_tab"] = [
'route_name' => "entity.{$entity_type_id}.moderation",
'title' => $this
->t('Manage moderation'),
'base_route' => "entity.{$entity_type_id}.edit_form",
'weight' => 30,
] + $base_plugin_definition;
}
$latest_version_entities = array_filter($this
->moderatableEntityDefinitions(), function (EntityTypeInterface $type) {
return $type
->hasLinkTemplate('latest-version');
});
foreach ($latest_version_entities as $entity_type_id => $entity_type) {
$this->derivatives["{$entity_type_id}.latest_version_tab"] = [
'route_name' => "entity.{$entity_type_id}.latest_version",
'title' => $this
->t('Latest version'),
'base_route' => "entity.{$entity_type_id}.canonical",
'weight' => 1,
] + $base_plugin_definition;
}
return $this->derivatives;
}
protected function moderatableEntityDefinitions() {
return array_filter($this->entityTypeManager
->getDefinitions(), function (EntityTypeInterface $type) {
return $type instanceof ContentEntityTypeInterface && $type
->getBundleEntityType() && $type
->isRevisionable();
});
}
protected function moderatableEntityTypeDefinitions() {
$entity_types = $this->entityTypeManager
->getDefinitions();
return array_filter($entity_types, function (EntityTypeInterface $type) use ($entity_types) {
return $type instanceof ConfigEntityTypeInterface && ($bundle_of = $type
->get('bundle_of')) && $entity_types[$bundle_of]
->isRevisionable();
});
}
}