Browse Source

HeartbeatStream
Can finally save HeartbeatType
Needed to iterate array rather than passing it into the set method

logicp 8 years ago
parent
commit
7ac27752b9
3 changed files with 25 additions and 21 deletions
  1. 1 1
      css/heartbeat8.css
  2. 19 17
      src/Entity/HeartbeatStream.php
  3. 5 3
      src/Form/HeartbeatStreamForm.php

+ 1 - 1
css/heartbeat8.css

@@ -1,3 +1,3 @@
 .token-tree {
-  display: none;
+  display: block;
 }

+ 19 - 17
src/Entity/HeartbeatStream.php

@@ -89,105 +89,106 @@ class HeartbeatStream extends RevisionableContentEntityBase implements Heartbeat
    * @param array use Drupal\heartbeat8\Entity\HeartbeatType $types
    */
   public function setTypes($types) {
-    $this->types = $types;
+    $this->set('types', $types);
+    return $this;
   }
 
   /**
    * @return mixed
    */
   public function getClass() {
-    return $this->class;
+    return $this->get('class');
   }
 
   /**
    * @param mixed $class
    */
   public function setClass($class) {
-    $this->class = $class;
+    $this->set('class', $class);
   }
 
   /**
    * @return mixed
    */
   public function getRealClass() {
-    return $this->realClass;
+    return $this->get('realClass');
   }
 
   /**
    * @param mixed $realClass
    */
   public function setRealClass($realClass) {
-    $this->realClass = $realClass;
+    $this->set('realClass', $realClass);
   }
 
   /**
    * @return mixed
    */
   public function getModule() {
-    return $this->module;
+    return $this->get('module');
   }
 
   /**
    * @param mixed $module
    */
   public function setModule($module) {
-    $this->module = $module;
+    $this->set('module', $module);
   }
 
   /**
    * @return mixed
    */
   public function getTitle() {
-    return $this->title;
+    return $this->get('title');
   }
 
   /**
    * @param mixed $title
    */
   public function setTitle($title) {
-    $this->title = $title;
+    $this->set('title', $title);
   }
 
   /**
    * @return mixed
    */
   public function getPath() {
-    return $this->path;
+    return $this->get('path');
   }
 
   /**
    * @param mixed $path
    */
   public function setPath($path) {
-    $this->path = $path;
+    $this->set('path', $path);
   }
 
   /**
    * @return mixed
    */
   public function getSettings() {
-    return $this->settings;
+    return $this->get('settings');
   }
 
   /**
    * @param mixed $settings
    */
   public function setSettings($settings) {
-    $this->settings = $settings;
+    $this->set('settings ', $settings);
   }
 
   /**
    * @return mixed
    */
   public function getVariables() {
-    return $this->variables;
+    return $this->get('variables');
   }
 
   /**
    * @param mixed $variables
    */
   public function setVariables($variables) {
-    $this->variables = $variables;
+    $this->set('variables', $variables);
   }
 
   /**
@@ -411,9 +412,10 @@ class HeartbeatStream extends RevisionableContentEntityBase implements Heartbeat
     $fields['types'] = BaseFieldDefinition::create('entity_reference')
       ->setLabel(t('Heartbeat Types'))
       ->setDescription(t('The Heartbeat Types included in this stream'))
+      ->setCardinality(BaseFieldDefinition::CARDINALITY_UNLIMITED)
+      ->setRequired(TRUE)
       ->setRevisionable(TRUE)
-      ->setSetting('target_type', 'heartbeat_type')
-      ->setCardinality(BaseFieldDefinition::CARDINALITY_UNLIMITED);
+      ->setSetting('target_type', 'heartbeat_type');
 
 
     return $fields;

+ 5 - 3
src/Form/HeartbeatStreamForm.php

@@ -106,10 +106,12 @@ class HeartbeatStreamForm extends ContentEntityForm {
     else {
       $entity->setNewRevision(FALSE);
     }
+
     if ($entity instanceof HeartbeatStream) {
-      $heartbeatTypes = $form_state->getValue('types');
-      $entity->set('types', $heartbeatTypes);
-      $entity->setTypes($heartbeatTypes);
+
+      foreach ($form_state->getValue('types') as $type) {
+        $entity->set('types', $type);
+      }
       $entity->save();
     }