12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace Drupal\heartbeat\Form;
- use Drupal\Core\Form\FormBase;
- use Drupal\Core\Form\FormStateInterface;
- class HeartbeatSettingsForm extends FormBase {
-
- public function getFormId() {
- return 'Heartbeat_settings';
- }
-
- public function submitForm(array &$form, FormStateInterface $form_state) {
-
- }
-
- public function buildForm(array $form, FormStateInterface $form_state) {
- $form['Heartbeat_settings']['#markup'] = 'Settings form for Heartbeat entities. Manage field settings here.';
- return $form;
- }
- }
|