HeartbeatSettingsForm.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace Drupal\heartbeat\Form;
  3. use Drupal\Core\Form\FormBase;
  4. use Drupal\Core\Form\FormStateInterface;
  5. /**
  6. * Class HeartbeatSettingsForm.
  7. *
  8. * @package Drupal\heartbeat\Form
  9. *
  10. * @ingroup heartbeat
  11. */
  12. class HeartbeatSettingsForm extends FormBase {
  13. /**
  14. * Returns a unique string identifying the form.
  15. *
  16. * @return string
  17. * The unique string identifying the form.
  18. */
  19. public function getFormId() {
  20. return 'Heartbeat_settings';
  21. }
  22. /**
  23. * Form submission handler.
  24. *
  25. * @param array $form
  26. * An associative array containing the structure of the form.
  27. * @param \Drupal\Core\Form\FormStateInterface $form_state
  28. * The current state of the form.
  29. */
  30. public function submitForm(array &$form, FormStateInterface $form_state) {
  31. // Empty implementation of the abstract submit class.
  32. }
  33. /**
  34. * Defines the settings form for Heartbeat entities.
  35. *
  36. * @param array $form
  37. * An associative array containing the structure of the form.
  38. * @param \Drupal\Core\Form\FormStateInterface $form_state
  39. * The current state of the form.
  40. *
  41. * @return array
  42. * Form definition array.
  43. */
  44. public function buildForm(array $form, FormStateInterface $form_state) {
  45. $form['Heartbeat_settings']['#markup'] = 'Settings form for Heartbeat entities. Manage field settings here.';
  46. return $form;
  47. }
  48. }