HeartbeatForm.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. namespace Drupal\heartbeat\Form;
  3. use Drupal\Component\Datetime\TimeInterface;
  4. use Drupal\Core\Entity\Annotation\EntityType;
  5. use Drupal\Core\Entity\ContentEntityForm;
  6. use Drupal\Core\Entity\EntityManagerInterface;
  7. use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
  8. use Drupal\Core\Entity\EntityTypeManager;
  9. use Drupal\Core\Form\FormStateInterface;
  10. use Drupal\heartbeat\Entity;
  11. use Symfony\Component\DependencyInjection\ContainerInterface;
  12. /**
  13. * Form controller for Heartbeat edit forms.
  14. *
  15. * @ingroup heartbeat
  16. */
  17. class HeartbeatForm extends ContentEntityForm {
  18. //TODO add dependency injection
  19. protected $nodeManager;
  20. /**
  21. * {@inheritdoc}
  22. */
  23. public static function create(ContainerInterface $container) {
  24. return new static(
  25. $container->get('entity_type.manager')
  26. );
  27. }
  28. public function __construct(EntityTypeManager $entity_type_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info = NULL, TimeInterface $time = NULL) {
  29. // parent::__construct($entity_type_bundle_info, $time);
  30. $this->nodeManager = $entity_type_manager->getStorage('node');
  31. }
  32. public function buildForm(array $form, FormStateInterface $form_state) {
  33. // $this->nodeManager = \Drupal::service('entity_type.manager')->getStorage('node');
  34. /* @var $entity \Drupal\heartbeat\Entity\Heartbeat */
  35. $form = parent::buildForm($form, $form_state);
  36. $entity = &$this->entity;
  37. if ($entity->isNew()) {
  38. $form['new_revision'] = array(
  39. '#type' => 'checkbox',
  40. '#title' => $this->t('Create new revision'),
  41. '#default_value' => FALSE,
  42. '#weight' => 10,
  43. );
  44. }
  45. $form['uid'] = array(
  46. '#type' => 'entity_autocomplete',
  47. '#target_type' => 'user',
  48. '#default_value' => $entity->getOwner(),
  49. // A comment can be made anonymous by leaving this field empty therefore
  50. // there is no need to list them in the autocomplete.
  51. '#selection_settings' => ['include_anonymous' => FALSE],
  52. '#title' => $this->t('Authored by'),
  53. '#description' => $this->t('The owner of the heartbeat')
  54. );
  55. $form['message'] = array(
  56. '#type' => 'text_format',
  57. '#description' => t('The Heartbeat message'),
  58. '#title' => 'Message',
  59. '#default' => $entity->getMessage()->getValue()[0]['value'],
  60. '#value' => $entity->getMessage()->getValue()[0]['value'],
  61. );
  62. $nodeId = $entity->getNid()->getValue()[0]['target_id'];
  63. $node = $this->nodeManager->load($nodeId);
  64. $form['nid'] = array(
  65. '#type' => 'entity_autocomplete',
  66. '#entity_type' => 'node',
  67. '#target_type' => 'node',
  68. '#selection_handler' => 'default',
  69. '#default_value' => $node,
  70. '#title' => 'Node',
  71. '#description' => t('The node referenced by this Heartbeat')
  72. );
  73. $form['status'] = array(
  74. '#type' => 'checkbox',
  75. '#title' => 'Status',
  76. '#description' => t('Published'),
  77. '#default_value' => $entity->isPublished(),
  78. );
  79. $entity = $this->entity;
  80. return $form;
  81. }
  82. /**
  83. * {@inheritdoc}
  84. */
  85. public function save(array $form, FormStateInterface $form_state) {
  86. $entity = &$this->entity;
  87. // Save as a new revision if requested to do so.
  88. if (!$form_state->isValueEmpty('new_revision') && $form_state->getValue('new_revision') != FALSE) {
  89. $entity->setNewRevision();
  90. // If a new revision is created, save the current user as revision author.
  91. $entity->setRevisionCreationTime(REQUEST_TIME);
  92. $entity->setRevisionUserId(\Drupal::currentUser()->id());
  93. }
  94. else {
  95. $entity->setNewRevision(FALSE);
  96. }
  97. $status = parent::save($form, $form_state);
  98. switch ($status) {
  99. case SAVED_NEW:
  100. drupal_set_message($this->t('Created the %label Heartbeat.', [
  101. '%label' => $entity->label(),
  102. ]));
  103. break;
  104. default:
  105. drupal_set_message($this->t('Saved the %label Heartbeat.', [
  106. '%label' => $entity->label(),
  107. ]));
  108. }
  109. $form_state->setRedirect('entity.heartbeat.canonical', ['heartbeat' => $entity->id()]);
  110. }
  111. }