Переглянути джерело

Amending friendship inserts so they provide 2 way friendship

logicp 7 роки тому
батько
коміт
fec1157129
1 змінених файлів з 12 додано та 0 видалено
  1. 12 0
      src/Entity/Heartbeat.php

+ 12 - 0
src/Entity/Heartbeat.php

@@ -682,6 +682,18 @@ class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterf
         \Drupal::logger('Heartbeat')->error('Unable to update friendship between %uid and %uid_target', array('%uid' => $uid, '%uid_target' => $uid_target));
       }
     }
+    if ($friendStatus === 1) {
+      $insert2 = Database::getConnection()->insert('heartbeat_friendship')
+        ->fields([
+          'uid' => $uid_target,
+          'uid_target' => $uid,
+          'created' => $unixtime,
+          'status' => $friendStatus
+        ]);
+      if (!$insert2->execute()) {
+        \Drupal::logger('Heartbeat')->error('Unable to update friendship between %uid and %uid_target', array('%uid' => $uid_target, '%uid_target' => $uid));
+      }
+    }
   }