Browse Source

HeartbeatStreamForm Dependency Injection
HeartbeatTypeService

logicp 8 years ago
parent
commit
5edb180e55
1 changed files with 41 additions and 4 deletions
  1. 41 4
      src/Form/HeartbeatStreamForm.php

+ 41 - 4
src/Form/HeartbeatStreamForm.php

@@ -2,9 +2,11 @@
 
 namespace Drupal\heartbeat8\Form;
 
+use Drupal\heartbeat8\HeartbeatTypeServices;
 use Drupal\Core\Database\Database;
 use Drupal\Core\Entity\ContentEntityForm;
 use Drupal\Core\Form\FormStateInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
  * Form controller for Heartbeat stream edit forms.
@@ -13,6 +15,40 @@ use Drupal\Core\Form\FormStateInterface;
  */
 class HeartbeatStreamForm extends ContentEntityForm {
 
+  protected $heartbeatTypeService;
+
+
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container) {
+    return new static($container->get('heartbeat8.heartbeattype'));
+  }
+
+
+  /**
+   * PHP 5 allows developers to declare constructor methods for classes.
+   * Classes which have a constructor method call this method on each newly-created object,
+   * so it is suitable for any initialization that the object may need before it is used.
+   *
+   * Note: Parent constructors are not called implicitly if the child class defines a constructor.
+   * In order to run a parent constructor, a call to parent::__construct() within the child constructor is required.
+   *
+   * param [ mixed $args [, $... ]]
+   * @param TreeBuilder $tree_builder
+   * @param Renderer $renderer
+   * @throws \Exception
+   */
+  public function __construct(HeartbeatTypeServices $heartbeatTypeService) {
+
+    $this->heartbeatTypeService = $heartbeatTypeService;
+
+  }
+
+
+
+
   /**
    * {@inheritdoc}
    */
@@ -28,13 +64,14 @@ class HeartbeatStreamForm extends ContentEntityForm {
         '#weight' => 10,
       );
     }
-//    $query = Database::getConnection()->select('heartbeat_type')
+    
     $form['types'] = array(
-      '#type' => 'checkboxes',
-      '#options' => array(
 
-      ),
+      '#type' => 'checkboxes',
+      '#options' => $this->heartbeatTypeService->getTypes(),
+      
       '#title' => $this->t('Please select all the Heartbeat Types you wish to include in this stream'),
+
     );
 
     $entity = $this->entity;