You are here

class TransactionLocalAction in Transaction 8

Provides local action definitions for transaction list in target entities.

Hierarchy

Expanded class hierarchy of TransactionLocalAction

See also

\Drupal\transaction\Plugin\Transaction\GenericTransactor

1 string reference to 'TransactionLocalAction'
transaction.links.action.yml in ./transaction.links.action.yml
transaction.links.action.yml

File

src/Plugin/Derivative/TransactionLocalAction.php, line 18

Namespace

Drupal\transaction\Plugin\Derivative
View source
class TransactionLocalAction extends DeriverBase implements ContainerDeriverInterface {
  use StringTranslationTrait;

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

  /**
   * The config factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * Creates an TransactionLocalTask object.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The config factory.
   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
   *   The translation manager.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, ConfigFactoryInterface $config_factory, TranslationInterface $string_translation) {
    $this->entityTypeManager = $entity_type_manager;
    $this->configFactory = $config_factory;
    $this->stringTranslation = $string_translation;
  }

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

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $this->derivatives = [];
    $tabs = $this->configFactory
      ->get('transaction.settings')
      ->get('tabs') ?: [];
    foreach ($tabs as $tab) {
      list($transaction_type_id, $target_entity_type_id) = explode('-', $tab);
      $this->derivatives["transaction.{$target_entity_type_id}.{$transaction_type_id}.add_transaction_action"] = [
        'route_name' => "entity.transaction.{$target_entity_type_id}.{$transaction_type_id}.add_form",
        'title' => $this
          ->t('Add @type transaction', [
          '@type' => $this->entityTypeManager
            ->getStorage('transaction_type')
            ->load($transaction_type_id)
            ->label(),
        ]),
        'appears_on' => [
          "entity.{$target_entity_type_id}.{$transaction_type_id}-transaction",
        ],
        'route_parameters' => [
          'target_entity_type' => $target_entity_type_id,
          'transaction_type' => $transaction_type_id,
        ],
      ];
    }
    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.
TransactionLocalAction::$configFactory protected property The config factory.
TransactionLocalAction::$entityTypeManager protected property The entity type manager.
TransactionLocalAction::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
TransactionLocalAction::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides DeriverBase::getDerivativeDefinitions
TransactionLocalAction::__construct public function Creates an TransactionLocalTask object.