ContentTranslationContextualLinks.php in Drupal 9
File
core/modules/content_translation/src/Plugin/Derivative/ContentTranslationContextualLinks.php
View source
<?php
namespace Drupal\content_translation\Plugin\Derivative;
use Drupal\Component\Plugin\Derivative\DeriverBase;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Drupal\content_translation\ContentTranslationManagerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class ContentTranslationContextualLinks extends DeriverBase implements ContainerDeriverInterface {
protected $contentTranslationManager;
public function __construct(ContentTranslationManagerInterface $content_translation_manager) {
$this->contentTranslationManager = $content_translation_manager;
}
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('content_translation.manager'));
}
public function getDerivativeDefinitions($base_plugin_definition) {
foreach ($this->contentTranslationManager
->getSupportedEntityTypes() as $entity_type_id => $entity_type) {
$this->derivatives[$entity_type_id]['title'] = t('Translate');
$this->derivatives[$entity_type_id]['route_name'] = "entity.{$entity_type_id}.content_translation_overview";
$this->derivatives[$entity_type_id]['group'] = $entity_type_id;
}
return parent::getDerivativeDefinitions($base_plugin_definition);
}
}