|
@@ -3,6 +3,7 @@
|
|
|
namespace Drupal\heartbeat8\Entity;
|
|
|
|
|
|
use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
|
|
|
+use Drupal\Core\Entity\EntityStorageInterface;
|
|
|
use Drupal\heartbeat8\HeartbeatTypeListBuilder;
|
|
|
|
|
|
/**
|
|
@@ -71,8 +72,6 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
|
|
|
|
|
|
public static function getHeartbeatTypeEntity($messageId) {
|
|
|
$entity_manager = \Drupal::entityTypeManager();
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
public function setMessageId($messageId) {
|
|
@@ -270,10 +269,56 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
|
|
|
return parent::entityTypeManager(); // TODO: Change the autogenerated stub
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * {@inheritdoc}
|
|
|
+ */
|
|
|
+ public function isLocked() {
|
|
|
+ $locked = \Drupal::state()->get('heartbeat.type.locked');
|
|
|
+ return isset($locked[$this->id()]) ? $locked[$this->id()] : FALSE;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+
|
|
|
public function loadHeartbeatType() {
|
|
|
$this->entityTypeManager->getDefinitions();
|
|
|
}
|
|
|
|
|
|
- public static function getList() {
|
|
|
+ /**
|
|
|
+ * {@inheritdoc}
|
|
|
+ */
|
|
|
+ public function postSave(EntityStorageInterface $storage, $update = TRUE) {
|
|
|
+ parent::postSave($storage, $update);
|
|
|
+
|
|
|
+ if ($update && $this->getOriginalId() != $this->id()) {
|
|
|
+ $update_count = heartbeat_type_update_heartbeats($this->getOriginalId(), $this->id());
|
|
|
+ if ($update_count) {
|
|
|
+ drupal_set_message(\Drupal::translation()->formatPlural($update_count,
|
|
|
+ 'Changed the heartbeat type of 1 activity from %old-type to %type.',
|
|
|
+ 'Changed the heartbeat type of @count activities from %old-type to %type.',
|
|
|
+ [
|
|
|
+ '%old-type' => $this->getOriginalId(),
|
|
|
+ '%type' => $this->id(),
|
|
|
+ ]));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if ($update) {
|
|
|
+ // Clear the cached field definitions as some settings affect the field
|
|
|
+ // definitions.
|
|
|
+ $this->entityManager()->clearCachedFieldDefinitions();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * {@inheritdoc}
|
|
|
+ */
|
|
|
+ public static function postDelete(EntityStorageInterface $storage, array $entities) {
|
|
|
+ parent::postDelete($storage, $entities);
|
|
|
+
|
|
|
+ // Clear the heartbeat type cache to reflect the removal.
|
|
|
+ $storage->resetCache(array_keys($entities));
|
|
|
}
|
|
|
}
|