|
@@ -4,6 +4,9 @@ namespace Drupal\statusmessage\Form;
|
|
|
|
|
|
use Drupal\Core\Entity\EntityForm;
|
|
|
use Drupal\Core\Form\FormStateInterface;
|
|
|
+use Drupal\statusmessage\StatusService;
|
|
|
+use Symfony\Component\DependencyInjection\ContainerInterface;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* Class StatusTypeForm.
|
|
@@ -11,6 +14,32 @@ use Drupal\Core\Form\FormStateInterface;
|
|
|
* @package Drupal\statusmessage\Form
|
|
|
*/
|
|
|
class StatusTypeForm extends EntityForm {
|
|
|
+
|
|
|
+ protected $mimeTypes;
|
|
|
+
|
|
|
+ protected $statusService;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * {@inheritdoc}
|
|
|
+ * @throws \Exception
|
|
|
+ */
|
|
|
+ public static function create(ContainerInterface $container) {
|
|
|
+ return new static(
|
|
|
+ $container->get('statusservice'));
|
|
|
+ }
|
|
|
+
|
|
|
+ public function __construct(StatusService $statusService) {
|
|
|
+ $this->statusService = $statusService;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public function buildForm(array $form, FormStateInterface $form_state) {
|
|
|
+ $this->mimeTypes = $this->statusService->getMimeTypes();
|
|
|
+ return parent::buildForm($form, $form_state); // TODO: Change the autogenerated stub
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* {@inheritdoc}
|
|
|
*/
|
|
@@ -36,6 +65,20 @@ class StatusTypeForm extends EntityForm {
|
|
|
'#disabled' => !$status_type->isNew(),
|
|
|
);
|
|
|
|
|
|
+ $form['media'] = array(
|
|
|
+ '#type' => 'checkbox',
|
|
|
+ '#description' => 'This status message contains media',
|
|
|
+ '#default' => $status_type->getMedia(),
|
|
|
+
|
|
|
+ );
|
|
|
+
|
|
|
+ $form['mime'] = array(
|
|
|
+ '#type' => 'select',
|
|
|
+ '#description' => 'The MIME Type of the media contained in this status message',
|
|
|
+ '#options' => array($this->mimeTypes),
|
|
|
+ '#default' => $status_type->getMime(),
|
|
|
+ );
|
|
|
+
|
|
|
/* You will need additional form elements for your custom properties. */
|
|
|
|
|
|
return $form;
|
|
@@ -46,6 +89,11 @@ class StatusTypeForm extends EntityForm {
|
|
|
*/
|
|
|
public function save(array $form, FormStateInterface $form_state) {
|
|
|
$status_type = $this->entity;
|
|
|
+$media = $form_state->getValue('media');
|
|
|
+$mime = $form_state->getValue('mime');
|
|
|
+ $status_type->setMedia($form_state->getValue('media'));
|
|
|
+ $status_type->setMime($this->mimeTypes[$form_state->getValue('mime')]);
|
|
|
+
|
|
|
$status = $status_type->save();
|
|
|
|
|
|
switch ($status) {
|