Browse Source

fixing Heartbeat form at admin/structure/heartbeat

logicp 8 years ago
parent
commit
b18a2c42e9
3 changed files with 49 additions and 1 deletions
  1. 32 0
      heartbeat8.module.php
  2. 5 0
      src/Entity/HeartbeatType.php
  3. 12 1
      src/Form/HeartbeatForm.php

+ 32 - 0
heartbeat8.module.php

@@ -0,0 +1,32 @@
+<?php
+/**
+ * Created by IntelliJ IDEA.
+ * User: logicp
+ * Date: 4/5/17
+ * Time: 1:18 AM
+ */
+use Drupal\Component\Utility\Xss;
+use Drupal\Core\Access\AccessResult;
+use Drupal\Core\Cache\Cache;
+use Drupal\Core\Database\Query\AlterableInterface;
+use Drupal\Core\Database\Query\SelectInterface;
+use Drupal\Core\Database\StatementInterface;
+use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
+use Drupal\Core\Form\FormStateInterface;
+use Drupal\Core\Render\Element;
+use Drupal\Core\Routing\RouteMatchInterface;
+use Drupal\Core\Session\AccountInterface;
+use Drupal\Core\Template\Attribute;
+use Drupal\Core\Url;
+use Drupal\field\Entity\FieldConfig;
+use Drupal\field\Entity\FieldStorageConfig;
+use Drupal\language\ConfigurableLanguageInterface;
+use Drupal\Heartbeat8\Entity\Heartbeat;
+use Drupal\Heartbeat8\Entity\HeartbeatType;
+use Drupal\Heartbeat8\Entity\HeartbeatInterface;
+use Drupal\Heartbeat8\Entity\HeartbeatTypeInterface;
+
+
+function heartbeat8_cron() {
+
+}

+ 5 - 0
src/Entity/HeartbeatType.php

@@ -54,4 +54,9 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
    */
   protected $label;
 
+  /**
+   * @var string
+   */
+  protected $description;
+
 }

+ 12 - 1
src/Form/HeartbeatForm.php

@@ -19,6 +19,8 @@ class HeartbeatForm extends ContentEntityForm {
     /* @var $entity \Drupal\heartbeat8\Entity\Heartbeat */
     $form = parent::buildForm($form, $form_state);
 
+    $entity = $this->entity;
+
     if (!$this->entity->isNew()) {
       $form['new_revision'] = array(
         '#type' => 'checkbox',
@@ -26,9 +28,18 @@ class HeartbeatForm extends ContentEntityForm {
         '#default_value' => FALSE,
         '#weight' => 10,
       );
+
+      $form['label'] = [
+        '#type' => 'textfield',
+        '#title' => $this->t('Label'),
+        '#maxlength' => 255,
+        '#default_value' => $entity->label(),
+        '#description' => $this->t("Label for the Heartbeat."),
+        '#required' => TRUE,
+      ];
     }
 
-    $entity = $this->entity;
+
 
     return $form;
   }