Browse Source

Fixing indent

logicp 8 years ago
parent
commit
7ebb1bb779
1 changed files with 23 additions and 21 deletions
  1. 23 21
      README.md

+ 23 - 21
README.md

@@ -3,25 +3,27 @@
 Integration of Cesium JS 3D mapping software with Drupal 8
 
 Be sure to stick this in your theme:
-{
-  function myTheme_preprocess_page(&$variables) {
-      $langCode = \Drupal::languageManager()->getCurrentLanguage()->getId();
-      if (\Drupal::service('path.current')->getPath() === '/map') {
-          if ($langCode === 'fr') {
-              $variables['#attached']['library'][] = 'qd30map/cesiumAdditionsFr';
-          } else {
-              $variables['#attached']['library'][] = 'qd30map/cesiumAdditions';
-          }
-      }
 
-      if (isset($variables['node'])) {
-          if ($variables['node']->getType() == 'boutique') {
-                $variables['#attached']['library'][] = 'qd30map/cesiumMini';
-                  $node = \Drupal::routeMatch()->getParameter('node');
-                  if ($node) {
-                    $variables['#attached']['drupalSettings']['boutique_title'] = $node->getTitle();
-                  }
-          }
-      }
-  }
-  }
+
+<?php
+
+function myTheme_preprocess_page(&$variables) {
+    $langCode = \Drupal::languageManager()->getCurrentLanguage()->getId();
+    if (\Drupal::service('path.current')->getPath() === '/map') {
+        if ($langCode === 'fr') {
+            $variables['#attached']['library'][] = 'qd30map/cesiumAdditionsFr';
+        } else {
+            $variables['#attached']['library'][] = 'qd30map/cesiumAdditions';
+        }
+    }
+
+    if (isset($variables['node'])) {
+        if ($variables['node']->getType() == 'boutique') {
+              $variables['#attached']['library'][] = 'qd30map/cesiumMini';
+                $node = \Drupal::routeMatch()->getParameter('node');
+                if ($node) {
+                  $variables['#attached']['drupalSettings']['boutique_title'] = $node->getTitle();
+                }
+        }
+    }
+}