Browse Source

Heartbeat creation on Entity Insert
beginning of implementation

logicp 8 years ago
parent
commit
ce809f74d9
3 changed files with 38 additions and 33 deletions
  1. 0 23
      heartbeat8.module
  2. 25 0
      src/Entity/Heartbeat.php
  3. 13 10
      src/Form/HeartbeatTypeForm.php

+ 0 - 23
heartbeat8.module

@@ -15,29 +15,6 @@ use Drupal\heartbeat8\Entity\Heartbeat;
 use Drupal\heartbeat8\Entity\HeartbeatType;
 
 
-//TODO include Streams (Entities already added with use statements on lines 9-10)
-
-// Always block from display
-const HEARTBEAT_NONE = -1;
-
-// Display only activity messages that are mine or addressed to me
-const HEARTBEAT_PRIVATE = 0;
-
-// Only the person that is chosen by the actor, can see the message
-const HEARTBEAT_PUBLIC_TO_ADDRESSEE = 1;
-
-// Display activity message of all my user relations, described in contributed modules
-const HEARTBEAT_PUBLIC_TO_CONNECTED = 2;
-
-// Everyone can see this activity message, unless this type of message is set to private
-const HEARTBEAT_PUBLIC_TO_ALL = 4;
-
-
-//Group Types
-
-const HEARTBEAT_GROUP_NONE = 11;
-const HEARTBEAT_GROUP_SINGLE = 12;
-const HEARTBEAT_GROUP_SUMMARY = 13;
 
 /**
  * Implements hook_help().

+ 25 - 0
src/Entity/Heartbeat.php

@@ -69,6 +69,31 @@ use Drupal\user\UserInterface;
  *   field_ui_base_route = "entity.heartbeat_type.edit_form"
  * )
  */
+
+// Always block from display
+const HEARTBEAT_NONE = -1;
+
+// Display only activity messages that are mine or addressed to me
+const HEARTBEAT_PRIVATE = 0;
+
+// Only the person that is chosen by the actor, can see the message
+const HEARTBEAT_PUBLIC_TO_ADDRESSEE = 1;
+
+// Display activity message of all my user relations, described in contributed modules
+const HEARTBEAT_PUBLIC_TO_CONNECTED = 2;
+
+// Everyone can see this activity message, unless this type of message is set to private
+const HEARTBEAT_PUBLIC_TO_ALL = 4;
+
+
+//Group Types
+
+const HEARTBEAT_GROUP_NONE = 11;
+const HEARTBEAT_GROUP_SINGLE = 12;
+const HEARTBEAT_GROUP_SUMMARY = 13;
+
+
+
 class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterface {
 
   use EntityChangedTrait;

+ 13 - 10
src/Form/HeartbeatTypeForm.php

@@ -4,6 +4,7 @@ namespace Drupal\heartbeat8\Form;
 
 use Drupal\Core\Render\Renderer;
 use Drupal\heartbeat8;
+use Drupal\heartbeat8\Entity;
 use Drupal\Core\Ajax\AjaxResponse;
 use Drupal\Core\Ajax\HtmlCommand;
 use Drupal\Core\Ajax\InvokeCommand;
@@ -29,12 +30,14 @@ class HeartbeatTypeForm extends EntityForm {
   private $treeAdded = false;
 
 
-
   /**
    * {@inheritdoc}
+   * @throws \Exception
    */
   public static function create(ContainerInterface $container) {
-    return new static($container->get('token.tree_builder'), $container->get('renderer'));
+    return new static(
+      $container->get('token.tree_builder'),
+      $container->get('renderer'));
   }
 
 
@@ -132,11 +135,11 @@ class HeartbeatTypeForm extends EntityForm {
       '#default_value' => $heartbeat_type->getPerms(),
       '#description' => $this->t("Default permissions to view Heartbeats of this type"),
       '#options' => array(
-        heartbeat8\HEARTBEAT_NONE => 'None',
-        heartbeat8\HEARTBEAT_PRIVATE => 'Private',
-        heartbeat8\HEARTBEAT_PUBLIC_TO_ADDRESSEE => 'Public to Addressee',
-        heartbeat8\HEARTBEAT_PUBLIC_TO_CONNECTED => 'Public to Connected',
-        heartbeat8\HEARTBEAT_PUBLIC_TO_ALL => 'Public to All',
+        HEARTBEAT_NONE => 'None',
+        HEARTBEAT_PRIVATE => 'Private',
+        HEARTBEAT_PUBLIC_TO_ADDRESSEE => 'Public to Addressee',
+        HEARTBEAT_PUBLIC_TO_CONNECTED => 'Public to Connected',
+        HEARTBEAT_PUBLIC_TO_ALL => 'Public to All',
 
       ),
       '#required' => TRUE,
@@ -149,9 +152,9 @@ class HeartbeatTypeForm extends EntityForm {
       '#default_value' => 0,
       '#description' => $this->t("Type of group associated with Heartbeats of this type"),
       '#options' => array(
-        heartbeat8\HEARTBEAT_GROUP_NONE => 'None',
-        heartbeat8\HEARTBEAT_GROUP_SINGLE =>'Single',
-        heartbeat8\HEARTBEAT_GROUP_SUMMARY => 'Group',
+        HEARTBEAT_GROUP_NONE => 'None',
+        HEARTBEAT_GROUP_SINGLE =>'Single',
+        HEARTBEAT_GROUP_SUMMARY => 'Group',
       ),
       '#required' => TRUE,
     );