Browse Source

First real commit for Asus branch

logicp 8 years ago
parent
commit
1b4a31ca15

+ 12 - 1
src/Entity/HeartbeatStreamEntity.php

@@ -3,7 +3,7 @@
 namespace Drupal\heartbeat8\Entity;
 
 use Drupal\Core\Config\Entity\ConfigEntityBase;
-use Drupal\heartbeat8\HeartbeatStreamEntityInterface;
+
 
 /**
  * Defines the Heartbeat stream entity entity.
@@ -240,4 +240,15 @@ class HeartbeatStreamEntity extends ConfigEntityBase implements HeartbeatStreamE
   public function getAttachments() {
     // TODO: Implement getAttachments() method.
   }
+
+  public function label() {
+    return parent::label();
+//    == null? "" : parent::label();
+  }
+
+  public function id()
+  {
+    return parent::id();
+//    == null ? 69 : parent::id(); // TODO: Change the autogenerated stub
+  }
 }

+ 1 - 1
src/HeartbeatStreamEntityInterface.php → src/Entity/HeartbeatStreamEntityInterface.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Drupal\heartbeat8;
+namespace Drupal\heartbeat8\Entity;
 
 use Drupal\Core\Config\Entity\ConfigEntityInterface;
 

+ 10 - 9
src/Form/HeartbeatStreamEntityForm.php

@@ -22,6 +22,16 @@ class HeartbeatStreamEntityForm extends EntityForm {
     $form = parent::form($form, $form_state);
 
 
+    $form['id'] = array(
+      '#type' => 'machine_name',
+      '#default_value' => $heartbeat_stream_entity->id(),
+      '#machine_name' => array(
+        'exists' => '\Drupal\heartbeat8\Entity\HeartbeatStreamEntity::load',
+      ),
+      '#disabled' => !$heartbeat_stream_entity->isNew(),
+    );
+
+
     $form['label'] = array(
       '#type' => 'textfield',
       '#title' => $this->t('Label'),
@@ -41,15 +51,6 @@ class HeartbeatStreamEntityForm extends EntityForm {
 //    );
 
 
-    $form['id'] = array(
-      '#type' => 'machine_name',
-      '#default_value' => $heartbeat_stream_entity->id(),
-      '#machine_name' => array(
-        'exists' => '\Drupal\heartbeat8\Entity\HeartbeatStreamEntity::load',
-      ),
-      '#disabled' => !$heartbeat_stream_entity->isNew(),
-    );
-
 
 
     /* You will need additional form elements for your custom properties. */