You are here

public function BaseJobAction::__construct in TMGMT Extension Suite 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/Action/BaseJobAction.php \Drupal\tmgmt_extension_suit\Plugin\Action\BaseJobAction::__construct()
  2. 8 src/Plugin/Action/BaseJobAction.php \Drupal\tmgmt_extension_suit\Plugin\Action\BaseJobAction::__construct()

Creates TranslateNode action.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\user\PrivateTempStoreFactory $temp_store_factory: The tempstore factory.

\Drupal\Core\Session\AccountInterface $current_user: Current user.

Overrides PluginBase::__construct

File

src/Plugin/Action/BaseJobAction.php, line 44

Class

BaseJobAction

Namespace

Drupal\tmgmt_extension_suit\Plugin\Action

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, PrivateTempStoreFactory $temp_store_factory, AccountInterface $current_user) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->currentUser = $current_user;
  $this->tempStoreFactory = $temp_store_factory;
}