diff core/modules/node/src/ParamConverter/NodePreviewConverter.php @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/modules/node/src/ParamConverter/NodePreviewConverter.php	Thu Jul 05 14:24:15 2018 +0000
@@ -0,0 +1,51 @@
+<?php
+
+namespace Drupal\node\ParamConverter;
+
+use Drupal\Core\TempStore\PrivateTempStoreFactory;
+use Symfony\Component\Routing\Route;
+use Drupal\Core\ParamConverter\ParamConverterInterface;
+
+/**
+ * Provides upcasting for a node entity in preview.
+ */
+class NodePreviewConverter implements ParamConverterInterface {
+
+  /**
+   * Stores the tempstore factory.
+   *
+   * @var \Drupal\Core\TempStore\PrivateTempStoreFactory
+   */
+  protected $tempStoreFactory;
+
+  /**
+   * Constructs a new NodePreviewConverter.
+   *
+   * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
+   *   The factory for the temp store object.
+   */
+  public function __construct(PrivateTempStoreFactory $temp_store_factory) {
+    $this->tempStoreFactory = $temp_store_factory;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  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();
+    }
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function applies($definition, $name, Route $route) {
+    if (!empty($definition['type']) && $definition['type'] == 'node_preview') {
+      return TRUE;
+    }
+    return FALSE;
+  }
+
+}