HeartbeatForm.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace Drupal\heartbeat\Form;
  3. use Drupal\Core\Entity\ContentEntityForm;
  4. use Drupal\Core\Form\FormStateInterface;
  5. use Drupal\heartbeat\Entity;
  6. /**
  7. * Form controller for Heartbeat edit forms.
  8. *
  9. * @ingroup heartbeat
  10. */
  11. class HeartbeatForm extends ContentEntityForm {
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function buildForm(array $form, FormStateInterface $form_state) {
  16. /* @var $entity \Drupal\heartbeat\Entity\Heartbeat */
  17. $form = parent::buildForm($form, $form_state);
  18. if (!$this->entity->isNew()) {
  19. $form['new_revision'] = array(
  20. '#type' => 'checkbox',
  21. '#title' => $this->t('Create new revision'),
  22. '#default_value' => FALSE,
  23. '#weight' => 10,
  24. );
  25. }
  26. $entity = $this->entity;
  27. return $form;
  28. }
  29. /**
  30. * {@inheritdoc}
  31. */
  32. public function save(array $form, FormStateInterface $form_state) {
  33. $entity = &$this->entity;
  34. // Save as a new revision if requested to do so.
  35. if (!$form_state->isValueEmpty('new_revision') && $form_state->getValue('new_revision') != FALSE) {
  36. $entity->setNewRevision();
  37. // If a new revision is created, save the current user as revision author.
  38. $entity->setRevisionCreationTime(REQUEST_TIME);
  39. $entity->setRevisionUserId(\Drupal::currentUser()->id());
  40. }
  41. else {
  42. $entity->setNewRevision(FALSE);
  43. }
  44. $status = parent::save($form, $form_state);
  45. switch ($status) {
  46. case SAVED_NEW:
  47. drupal_set_message($this->t('Created the %label Heartbeat.', [
  48. '%label' => $entity->label(),
  49. ]));
  50. break;
  51. default:
  52. drupal_set_message($this->t('Saved the %label Heartbeat.', [
  53. '%label' => $entity->label(),
  54. ]));
  55. }
  56. $form_state->setRedirect('entity.heartbeat.canonical', ['heartbeat' => $entity->id()]);
  57. }
  58. }