You are here

class ReplicateUILocalTasks in Replicate UI 8

Hierarchy

Expanded class hierarchy of ReplicateUILocalTasks

1 string reference to 'ReplicateUILocalTasks'
replicate_ui.links.task.yml in ./replicate_ui.links.task.yml
replicate_ui.links.task.yml

File

src/Plugin/Derivative/ReplicateUILocalTasks.php, line 13

Namespace

Drupal\replicate_ui\Plugin\Derivative
View source
class ReplicateUILocalTasks extends DeriverBase implements ContainerDeriverInterface {
  use StringTranslationTrait;

  /**
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * Creates a new RouteSubscriber instance.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
   *   The entity type manager.
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The config factory.
   */
  public function __construct(EntityTypeManagerInterface $entityTypeManager, ConfigFactoryInterface $config_factory) {
    $this->entityTypeManager = $entityTypeManager;
    $this->configFactory = $config_factory;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, $base_plugin_id) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('config.factory'));
  }

  /**
   * {@inheritdoc}
   */
  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";
        $base_route_name = "entity.{$entity_type_id}.canonical";
        $this->derivatives[$replicate_route_name] = [
          'entity_type' => $entity_type_id,
          'title' => $this
            ->t('Replicate'),
          'route_name' => $replicate_route_name,
          'base_route' => $base_route_name,
        ] + $base_plugin_definition;
      }
    }
    return parent::getDerivativeDefinitions($base_plugin_definition);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DeriverBase::$derivatives protected property List of derivative definitions. 1
DeriverBase::getDerivativeDefinition public function Gets the definition of a derivative plugin. Overrides DeriverInterface::getDerivativeDefinition
ReplicateUILocalTasks::$configFactory protected property
ReplicateUILocalTasks::$entityTypeManager protected property
ReplicateUILocalTasks::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
ReplicateUILocalTasks::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides DeriverBase::getDerivativeDefinitions
ReplicateUILocalTasks::__construct public function Creates a new RouteSubscriber instance.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.