Browse Source

Adding handling for status entities

logicp 7 years ago
parent
commit
1f4d4a16c5

+ 19 - 0
config/install/heartbeat.heartbeat_type.user_post_status.yml.bak

@@ -0,0 +1,19 @@
+uuid: eee0b18b-bd5e-458f-8b08-760e8d882fb0
+langcode: en
+status: true
+dependencies: {  }
+id: user_post_status
+label: 'User Post Status'
+hid: null
+message_id: null
+description: 'Records the event of a user posting a status message'
+mainentity: status
+bundle: null
+message: '!user has posted a status update: !status'
+perms: 0
+group_type: HEARTBEAT_GROUP_NONE
+arguments: '{"!user":"[user:account-name]","!status":"[status:message]"}'
+variables:
+  - '[user:account-name]'
+  - '[status:message]'
+

+ 11 - 11
heartbeat.install

@@ -297,16 +297,16 @@ function heartbeat_install_table_user_templates() {
 }
 
 function heartbeat_uninstall() {
-//  $entities = \Drupal::service("entity.query")->get("heartbeat")->execute();
-//  foreach($entities as $entity) {
-//    $heartbeat = \Drupal::service("entity_type.manager")->getStorage("heartbeat")->load($entity);
-//    $heartbeat->delete();
-//  }
+  $entities = \Drupal::service("entity.query")->get("heartbeat")->execute();
+  foreach($entities as $entity) {
+    $heartbeat = \Drupal::service("entity_type.manager")->getStorage("heartbeat")->load($entity);
+    $heartbeat->delete();
+  }
+
+  $entities = \Drupal::service("entity.query")->get("heartbeat_stream")->execute();
 
-//  $entities = \Drupal::service("entity.query")->get("heartbeat_stream")->execute();
-//
-//  foreach($entities as $entity) {
-//    $heartbeat = \Drupal::service("entity_type.manager")->getStorage("heartbeat_stream")->load($entity);
-//    $heartbeat->delete();
-//  }
+  foreach($entities as $entity) {
+    $heartbeat = \Drupal::service("entity_type.manager")->getStorage("heartbeat_stream")->load($entity);
+    $heartbeat->delete();
+  }
 }

+ 2 - 1
src/Entity/Heartbeat.php

@@ -606,7 +606,8 @@ class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterf
     foreach ($entityTypes as $type) {
 
       if (($type->getBaseTable() === 'node') ||
-          ($type->getBaseTable() === 'user')
+          ($type->getBaseTable() === 'user') ||
+        ($type->getBaseTable() === 'status')
         ||
           ($type->getStorageClass() !== NULL &&
             strpos($type->getStorageClass(), $type->getLabel()->getUntranslatedString())