Browse Source

Building tokenTree in constructor with proper annotations

logicp 8 years ago
parent
commit
67693c500b
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/Form/HeartbeatTypeForm.php

+ 6 - 6
src/Form/HeartbeatTypeForm.php

@@ -56,6 +56,12 @@ class HeartbeatTypeForm extends EntityForm {
     $this->treeBuilder = $tree_builder;
     $this->renderer = $renderer;
 
+    $this->tokenTree = $this->renderer->render($this->treeBuilder->buildAllRenderable([
+      'click_insert' => TRUE,
+      'show_restricted' => TRUE,
+      'show_nested' => FALSE,
+    ]));
+
   }
 
 
@@ -199,12 +205,6 @@ class HeartbeatTypeForm extends EntityForm {
       ],
     ];
 
-    if ($this->tokenTree == null) $this->tokenTree = $this->renderer->render($this->treeBuilder->buildAllRenderable([
-      'click_insert' => TRUE,
-      'show_restricted' => TRUE,
-      'show_nested' => FALSE,
-    ]));
-
     $form['tokens'] = array(
       '#prefix' => '<div id="token-tree"></div>',
       '#markup' => $this->tokenTree