Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_prepare_view.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/hook/entity_prepare_view.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/hook/entity_prepare_view.twig
new file mode 100644 (file)
index 0000000..efe2cff
--- /dev/null
@@ -0,0 +1,23 @@
+/**
+ * Implements hook_entity_prepare_view().
+ */
+function {{ machine_name }}_entity_prepare_view($entity_type_id, array $entities, array $displays, $view_mode) {
+  // Load a specific node into the user object for later theming.
+  if (!empty($entities) && $entity_type_id == 'user') {
+    // Only do the extra work if the component is configured to be
+    // displayed. This assumes a 'mymodule_addition' extra field has been
+    // defined for the entity bundle in hook_entity_extra_field_info().
+    $ids = [];
+    foreach ($entities as $id => $entity) {
+      if ($displays[$entity->bundle()]->getComponent('mymodule_addition')) {
+        $ids[] = $id;
+      }
+    }
+    if ($ids) {
+      $nodes = mymodule_get_user_nodes($ids);
+      foreach ($ids as $id) {
+        $entities[$id]->user_node = $nodes[$id];
+      }
+    }
+  }
+}