You are here

public function Vid::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/node/src/Plugin/views/argument/Vid.php \Drupal\node\Plugin\views\argument\Vid::__construct()

Constructs a \Drupal\node\Plugin\views\argument\Vid object.

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\Core\Database\Connection $database: Database Service Object.

\Drupal\node\NodeStorageInterface $node_storage: The node storage.

Overrides HandlerBase::__construct

File

core/modules/node/src/Plugin/views/argument/Vid.php, line 45

Class

Vid
Argument handler to accept a node revision id.

Namespace

Drupal\node\Plugin\views\argument

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, Connection $database, NodeStorageInterface $node_storage) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->database = $database;
  $this->nodeStorage = $node_storage;
}