juicebox-8.x-2.x-dev/src/Plugin/Derivative/JuiceboxConfFieldContextualLinks.php
src/Plugin/Derivative/JuiceboxConfFieldContextualLinks.php
<?php
namespace Drupal\juicebox\Plugin\Derivative;
use Drupal\Component\Plugin\Derivative\DeriverBase;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\StringTranslation\TranslationInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
/**
* Provides dynamic contextual links for Juicebox field conf editing.
*/
class JuiceboxConfFieldContextualLinks extends DeriverBase implements ContainerDeriverInterface {
use StringTranslationTrait;
/**
* A Drupal entity type manager service.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* Constructor.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager service.
* @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
* A string translation service.
*/
public function __construct(EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation) {
$this->entityTypeManager = $entity_type_manager;
$this->stringTranslation = $string_translation;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, $base_plugin_id) {
// Create a new instance of the deriver. This also allows us to extract
// services from the container and inject them into our deriver via its own
// constructor as needed.
return new static(
$container->get('entity_type.manager'),
$container->get('string_translation')
);
}
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
// We need a contextual link defined for each entity type (that may contain
// a Juicebox gallery) in order to provide a link to the relevant edit
// display screen. These link definitions must be unique because the related
// route to the edit display screen is different for each entity type.
foreach ($this->entityTypeManager->getDefinitions() as $entity_type_id => $entity_type) {
// Only fieldable entity are candidates.
if ($entity_type->entityClassImplements('\Drupal\Core\Entity\ContentEntityInterface')) {
$bundle_entity_type = $entity_type->getBundleEntityType();
$this->derivatives['juicebox.conf_field_' . $entity_type_id]['title'] = $this->t('Configure galleries of this field instance');
$this->derivatives['juicebox.conf_field_' . $entity_type_id]['route_name'] = 'entity.entity_view_display.' . $entity_type_id . '.view_mode';
$this->derivatives['juicebox.conf_field_' . $entity_type_id]['group'] = 'juicebox_conf_field_' . $entity_type_id;
}
}
return parent::getDerivativeDefinitions($base_plugin_definition);
}
}
