Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / lib / Drupal / Core / Entity / ContentEntityForm.php
index e6f97aef910a15f8300ba8bc8d2f49dd56f2ecda..92bbbae42f98ac98acef95ae7d4de75ce8441033 100644 (file)
@@ -127,6 +127,15 @@ class ContentEntityForm extends EntityForm implements ContentEntityFormInterface
       $this->addRevisionableFormFields($form);
     }
 
+    $form['footer'] = [
+      '#type' => 'container',
+      '#weight' => 99,
+      '#attributes' => [
+        'class' => ['entity-content-form-footer']
+      ],
+      '#optional' => TRUE,
+    ];
+
     return $form;
   }