Browse Source

New Feature:
incorporation of hook_save

logicp 8 years ago
parent
commit
f4422b1249
2 changed files with 20 additions and 0 deletions
  1. 15 0
      heartbeat8.module
  2. 5 0
      src/Controller/TestController.php

+ 15 - 0
heartbeat8.module

@@ -8,6 +8,7 @@
 namespace Drupal\heartbeat8;
 
 use Drupal\Core\Routing\RouteMatchInterface;
+use Drupal\Core\Entity\EntityInterface;
 use Drupal\heartbeat8\Entity\Heartbeat;
 use Drupal\heartbeat8\Entity\HeartbeatType;
 
@@ -86,6 +87,20 @@ function heartbeat8_theme_suggestions_heartbeat(array $variables) {
   return $suggestions;
 }
 
+/**
+ * Implements hook_entity_insert().
+ */
+function heartbeat8_entity_insert(EntityInterface $entity) {
+
+  $heartbeatTypeService = \Drupal::service('heartbeat8.heartbeattype');
+
+  foreach ($heartbeatTypeService->getTypes() as $type) {
+    $heartbeatTypeEntity = \Drupal::entityTypeManager()->getStorage('heartbeat_type')->load($type);
+
+
+  }
+
+}
 
 
 //TODO Add heartbeat language to Javascript

+ 5 - 0
src/Controller/TestController.php

@@ -60,6 +60,11 @@ class TestController extends ControllerBase {
       $arg .= '   ' . $i . '. ' . $heartbeatType['target_id'];
       $i++;
     }
+
+    $heartbeatTypeService = \Drupal::service('heartbeat8.heartbeattype');
+    foreach ($heartbeatTypeService->getTypes() as $type) {
+      $heartbeatTypeEntity = \Drupal::entityTypeManager()->getStorage('heartbeat_type')->load($type);
+    }
     $emptyVariable = 'not empty';
 
     return [