You are here

class RdfUiLocalTask in Schema.org configuration tool (RDF UI) 8

Provides local task definitions for all entity bundles.

Hierarchy

Expanded class hierarchy of RdfUiLocalTask

1 string reference to 'RdfUiLocalTask'
rdfui.links.task.yml in ./rdfui.links.task.yml
rdfui.links.task.yml

File

src/Plugin/Derivative/RdfUiLocalTask.php, line 16

Namespace

Drupal\rdfui\Plugin\Derivative
View source
class RdfUiLocalTask extends DeriverBase implements ContainerDeriverInterface {
  use StringTranslationTrait;

  /**
   * The route provider.
   *
   * @var \Drupal\Core\Routing\RouteProviderInterface
   */
  protected $routeProvider;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * Creates an FieldUiLocalTask object.
   *
   * @param \Drupal\Core\Routing\RouteProviderInterface $route_provider
   *   The route provider.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity manager.
   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
   *   The translation manager.
   */
  public function __construct(RouteProviderInterface $route_provider, EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation) {
    $this->routeProvider = $route_provider;
    $this->entityTypeManager = $entity_type_manager;
    $this->stringTranslation = $string_translation;
  }

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

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $this->derivatives = [];
    $entity_type_ids = [
      'user',
      'node',
      'comment',
      'taxonomy_term',
    ];
    foreach ($this->entityTypeManager
      ->getDefinitions() as $entity_type_id => $entity_type) {
      if ($entity_type
        ->get('field_ui_base_route') && in_array($entity_type_id, $entity_type_ids)) {
        $this->derivatives["overview_{$entity_type_id}"] = array(
          'route_name' => "entity.{$entity_type_id}.field_ui_fields",
          'title' => $this
            ->t('Fields'),
          'parent_id' => "field_ui.fields:overview_{$entity_type_id}",
        );
        $this->derivatives["rdf_{$entity_type_id}"] = array(
          'route_name' => "entity.{$entity_type_id}.rdf_ui_fields",
          'weight' => 2,
          'title' => $this
            ->t('RDF Mappings'),
          'parent_id' => "field_ui.fields:overview_{$entity_type_id}",
        );
      }
    }
    foreach ($this->derivatives as &$entry) {
      $entry += $base_plugin_definition;
    }
    return $this->derivatives;
  }

  /**
   * Alters the base_route definition for RDF UI local tasks.
   *
   * @param array $local_tasks
   *   An array of local tasks plugin definitions, keyed by plugin ID.
   */
  public function alterLocalTasks(array &$local_tasks) {
    foreach ($this->entityTypeManager
      ->getDefinitions() as $entity_type_id => $entity_type) {
      if ($route_name = $entity_type
        ->get('field_ui_base_route') && ($entity_type_id === "node" || $entity_type_id === "user")) {
        $local_tasks["field_ui.fields:rdf_{$entity_type_id}"]['base_route'] = $route_name;
        $local_tasks["field_ui.fields:overview_{$entity_type_id}"]['base_route'] = $route_name;
      }
    }
  }

}

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
RdfUiLocalTask::$entityTypeManager protected property The entity type manager.
RdfUiLocalTask::$routeProvider protected property The route provider.
RdfUiLocalTask::alterLocalTasks public function Alters the base_route definition for RDF UI local tasks.
RdfUiLocalTask::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
RdfUiLocalTask::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides DeriverBase::getDerivativeDefinitions
RdfUiLocalTask::__construct public function Creates an FieldUiLocalTask object.
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.