You are here

class RevisionsContextual in Workspace 8

Provides contextual link definitions for all entity bundles.

Hierarchy

Expanded class hierarchy of RevisionsContextual

1 string reference to 'RevisionsContextual'
workspace.links.contextual.yml in ./workspace.links.contextual.yml
workspace.links.contextual.yml

File

src/Plugin/Derivative/RevisionsContextual.php, line 10

Namespace

Drupal\workspace\Plugin\Derivative
View source
class RevisionsContextual extends RevisionsLocalTask implements ContainerDeriverInterface {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $this->derivatives = [];
    foreach ($this->entityTypeManager
      ->getDefinitions() as $entity_type_id => $entity_type) {
      if ($entity_type
        ->hasLinkTemplate('version-tree')) {
        $this->derivatives[$entity_type_id] = [
          'route_name' => "entity.{$entity_type_id}.version_tree",
          'title' => $this
            ->t('Tree'),
          'group' => $entity_type_id,
          'weight' => 20,
        ];
      }
    }
    foreach ($this->derivatives as &$derivative) {
      $derivative += $base_plugin_definition;
    }
    return $this->derivatives;
  }

}

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
RevisionsContextual::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides RevisionsLocalTask::getDerivativeDefinitions
RevisionsLocalTask::$entityTypeManager protected property The entity type manager.
RevisionsLocalTask::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
RevisionsLocalTask::__construct public function Creates an RevisionsLocalTask 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.