function NodePreviewConverter::convert

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

File

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

Class

NodePreviewConverter
Provides upcasting for a node entity in preview.

Namespace

Drupal\node\ParamConverter

Code

public function convert($value, $definition, $name, array $defaults) {
  $store = $this->tempStoreFactory
    ->get('node_preview');
  if ($form_state = $store->get($value)) {
    return $form_state->getFormObject()
      ->getEntity();
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.