diff core/modules/block/src/Theme/AdminDemoNegotiator.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/modules/block/src/Theme/AdminDemoNegotiator.php	Wed Nov 29 16:09:58 2017 +0000
@@ -0,0 +1,29 @@
+<?php
+
+namespace Drupal\block\Theme;
+
+use Drupal\Core\Routing\RouteMatchInterface;
+use Drupal\Core\Theme\ThemeNegotiatorInterface;
+
+/**
+ * Negotiates the theme for the block admin demo page via the URL.
+ */
+class AdminDemoNegotiator implements ThemeNegotiatorInterface {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function applies(RouteMatchInterface $route_match) {
+    return $route_match->getRouteName() == 'block.admin_demo';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function determineActiveTheme(RouteMatchInterface $route_match) {
+    // We return exactly what was passed in, to guarantee that the page will
+    // always be displayed using the theme whose blocks are being configured.
+    return $route_match->getParameter('theme');
+  }
+
+}