You are here

class WorkflowLocalTask in Workflow 8

Provides local task definitions for all entity bundles.

Hierarchy

Expanded class hierarchy of WorkflowLocalTask

See also

\Drupal\workflow\Routing\RouteSubscriber

1 string reference to 'WorkflowLocalTask'
workflow.links.task.yml in ./workflow.links.task.yml
workflow.links.task.yml

File

src/Plugin/Derivative/WorkflowLocalTask.php, line 17

Namespace

Drupal\workflow\Plugin\Derivative
View source
class WorkflowLocalTask extends DeriverBase implements ContainerDeriverInterface {
  use StringTranslationTrait;

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

  /**
   * Creates an WorkflowLocalTask object.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity manager.
   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
   *   The translation manager.
   */
  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) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('string_translation'));
  }

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $this->derivatives = [];
    $field_list = workflow_get_workflow_fields_by_entity_type();
    foreach ($field_list as $entity_type_id => $fields) {
      $this->derivatives["entity.{$entity_type_id}.workflow_history"] = [
        'route_name' => "entity.{$entity_type_id}.workflow_history",
        'title' => $this
          ->t('Workflow'),
        'base_route' => "entity.{$entity_type_id}.canonical",
        'weight' => 100,
      ];
    }
    foreach ($this->derivatives as &$entry) {
      $entry += $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
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.
WorkflowLocalTask::$entityTypeManager protected property The entity manager.
WorkflowLocalTask::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
WorkflowLocalTask::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides DeriverBase::getDerivativeDefinitions
WorkflowLocalTask::__construct public function Creates an WorkflowLocalTask object.