You are here

public function NodePreviewConverter::__construct in Drupal 9

Same name in this branch
  1. 9 core/modules/node/src/ParamConverter/NodePreviewConverter.php \Drupal\node\ParamConverter\NodePreviewConverter::__construct()
  2. 9 core/modules/node/src/ProxyClass/ParamConverter/NodePreviewConverter.php \Drupal\node\ProxyClass\ParamConverter\NodePreviewConverter::__construct()
Same name and namespace in other branches
  1. 8 core/modules/node/src/ParamConverter/NodePreviewConverter.php \Drupal\node\ParamConverter\NodePreviewConverter::__construct()
  2. 10 core/modules/node/src/ParamConverter/NodePreviewConverter.php \Drupal\node\ParamConverter\NodePreviewConverter::__construct()

Constructs a new NodePreviewConverter.

Parameters

\Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory: The factory for the temp store object.

File

core/modules/node/src/ParamConverter/NodePreviewConverter.php, line 27

Class

NodePreviewConverter
Provides upcasting for a node entity in preview.

Namespace

Drupal\node\ParamConverter

Code

public function __construct(PrivateTempStoreFactory $temp_store_factory) {
  $this->tempStoreFactory = $temp_store_factory;
}