|
@@ -2,7 +2,7 @@
|
|
|
|
|
|
namespace Drupal\statusmessage\Form;
|
|
|
|
|
|
-use Drupal\Core\Entity\ContentEntityForm;
|
|
|
+use Drupal\Core\Form\FormBase;
|
|
|
use Drupal\Core\Form\FormStateInterface;
|
|
|
|
|
|
/**
|
|
@@ -10,14 +10,25 @@ use Drupal\Core\Form\FormStateInterface;
|
|
|
*
|
|
|
* @ingroup statusmessage
|
|
|
*/
|
|
|
-class StatusForm extends ContentEntityForm {
|
|
|
+class StatusForm extends FormBase {
|
|
|
/**
|
|
|
* {@inheritdoc}
|
|
|
*/
|
|
|
public function buildForm(array $form, FormStateInterface $form_state) {
|
|
|
/* @var $entity \Drupal\statusmessage\Entity\Status */
|
|
|
- $form = parent::buildForm($form, $form_state);
|
|
|
- $entity = $this->entity;
|
|
|
+
|
|
|
+ $form['message'] = array(
|
|
|
+ '#type' => 'textarea',
|
|
|
+ '#description' => 'Status Message',
|
|
|
+
|
|
|
+ );
|
|
|
+
|
|
|
+ $form['post'] = array(
|
|
|
+ '#type' => 'submit',
|
|
|
+ '#description' => 'Post',
|
|
|
+ '#value' => t('Post')
|
|
|
+
|
|
|
+ );
|
|
|
|
|
|
return $form;
|
|
|
}
|
|
@@ -27,8 +38,9 @@ class StatusForm extends ContentEntityForm {
|
|
|
*/
|
|
|
public function save(array $form, FormStateInterface $form_state) {
|
|
|
$entity = $this->entity;
|
|
|
- $status = parent::save($form, $form_state);
|
|
|
-
|
|
|
+// $status = parent::save($form, $form_state);
|
|
|
+
|
|
|
+
|
|
|
switch ($status) {
|
|
|
case SAVED_NEW:
|
|
|
drupal_set_message($this->t('Created the %label Status.', [
|
|
@@ -44,4 +56,28 @@ class StatusForm extends ContentEntityForm {
|
|
|
$form_state->setRedirect('entity.status.canonical', ['status' => $entity->id()]);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Returns a unique string identifying the form.
|
|
|
+ *
|
|
|
+ * @return string
|
|
|
+ * The unique string identifying the form.
|
|
|
+ */
|
|
|
+ public function getFormId()
|
|
|
+ {
|
|
|
+ // TODO: Implement getFormId() method.
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Form submission handler.
|
|
|
+ *
|
|
|
+ * @param array $form
|
|
|
+ * An associative array containing the structure of the form.
|
|
|
+ * @param \Drupal\Core\Form\FormStateInterface $form_state
|
|
|
+ * The current state of the form.
|
|
|
+ */
|
|
|
+ public function submitForm(array &$form, FormStateInterface $form_state)
|
|
|
+ {
|
|
|
+ // TODO: Implement submitForm() method.
|
|
|
+ }
|
|
|
}
|
|
|
+
|