소스 검색

New services
Schema amendments
StatusForm being called in StatusBlock for easy addition to user profiles

logicp 7 년 전
부모
커밋
9677b25161

+ 1 - 0
config/install/statusmessage.default.yml

@@ -0,0 +1 @@
+statusmessage:

+ 89 - 0
src/Form/DefaultForm.php

@@ -0,0 +1,89 @@
+<?php
+
+namespace Drupal\statusmessage\Form;
+
+use Drupal\Core\Form\FormBase;
+use Drupal\Core\Form\FormStateInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+use Drupal\statusmessage\StatusService;
+
+/**
+ * Class DefaultForm.
+ *
+ * @package Drupal\statusmessage\Form
+ */
+class DefaultForm extends FormBase {
+
+  /**
+   * Drupal\statusmessage\StatusService definition.
+   *
+   * @var \Drupal\statusmessage\StatusService
+   */
+  protected $statusService;
+  public function __construct(
+    StatusService $statusservice
+  ) {
+    $this->statusService = $statusservice;
+  }
+
+  public static function create(ContainerInterface $container) {
+    return new static(
+      $container->get('statusservice')
+    );
+  }
+
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFormId() {
+    return 'status_form';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    $form['message'] = [
+      '#type' => 'textarea',
+      '#title' => $this->t('Message'),
+      '#description' => $this->t('Status Message'),
+    ];
+    $form['media'] = [
+      '#type' => 'radio',
+      '#title' => $this->t('Media'),
+      '#description' => $this->t('Media'),
+    ];
+    $form['post'] = [
+      '#type' => 'submit',
+      '#title' => $this->t('Post'),
+      '#description' => $this->t('Post the message'),
+    ];
+
+    $form['submit'] = [
+        '#type' => 'submit',
+        '#value' => $this->t('Submit'),
+    ];
+
+    return $form;
+  }
+
+  /**
+    * {@inheritdoc}
+    */
+  public function validateForm(array &$form, FormStateInterface $form_state) {
+    parent::validateForm($form, $form_state);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+    // Display result.
+    foreach ($form_state->getValues() as $key => $value) {
+        drupal_set_message($key . ': ' . $value);
+    }
+
+  }
+
+}

+ 42 - 6
src/Form/StatusForm.php

@@ -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.
+  }
 }
+

+ 3 - 3
src/Form/StatusTypeForm.php

@@ -89,10 +89,10 @@ 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')]);
+    if ($status_type->getMedia()) {
+      $status_type->setMime($this->mimeTypes[$form_state->getValue('mime')]);
+    }
 
     $status = $status_type->save();
 

+ 31 - 0
src/Plugin/Block/StatusBlock.php

@@ -0,0 +1,31 @@
+<?php
+
+namespace Drupal\statusmessage\Plugin\Block;
+
+use Drupal\Core\Block\BlockBase;
+
+/**
+ * Provides a 'StatusBlock' block.
+ *
+ * @Block(
+ *  id = "status_block",
+ *  admin_label = @Translation("Status block"),
+ * )
+ */
+class StatusBlock extends BlockBase {
+
+
+  /**
+   * {@inheritdoc}
+   */
+  public function build() {
+    $build = [];
+    $build['status_block']['#markup'] = 'Implement StatusBlock.';
+
+    $form = \Drupal::formBuilder()->getForm('Drupal\statusmessage\Form\StatusForm');
+
+    return $form;
+  }
+
+}
+

+ 42 - 0
src/StatusTypeService.php

@@ -0,0 +1,42 @@
+<?php
+
+namespace Drupal\statusmessage;
+use Drupal\Core\Entity\Query\QueryFactory;
+use Drupal\Core\Entity\EntityTypeManager;
+
+/**
+ * Class StatusTypeService.
+ *
+ * @package Drupal\statusmessage
+ */
+class StatusTypeService {
+
+  /**
+   * Drupal\Core\Entity\Query\QueryFactory definition.
+   *
+   * @var \Drupal\Core\Entity\Query\QueryFactory
+   */
+  protected $entityQuery;
+  /**
+   * Drupal\Core\Entity\EntityTypeManager definition.
+   *
+   * @var \Drupal\Core\Entity\EntityTypeManager
+   */
+  protected $entityTypeManager;
+  /**
+   * Constructor.
+   */
+  public function __construct(QueryFactory $entity_query, EntityTypeManager $entity_type_manager) {
+    $this->entityQuery = $entity_query;
+    $this->entityTypeManager= $entity_type_manager;
+  }
+
+
+  public function getTypes() {
+    return $this->entityQuery->get('status_type')->execute();
+  }
+
+  public function load($id) {
+    return $this->entityTypeManager->getStorage('status_type')->load($id);
+  }
+}

+ 9 - 0
statusmessage.routing.yml

@@ -0,0 +1,9 @@
+
+statusmessage.status_form:
+  path: '/statusmessage/form/default'
+  defaults:
+    _form: '\Drupal\statusmessage\Form\DefaultForm'
+    _title: 'DefaultForm'
+  requirements:
+    _access: 'TRUE'
+  

+ 4 - 0
statusmessage.services.yml

@@ -3,3 +3,7 @@ services:
     class: Drupal\statusmessage\StatusService
     arguments: ["@database", "@entity_type.manager", "@entity.query", "@flag"]
 
+  status_type_service:
+    class: Drupal\statusmessage\StatusTypeService
+    arguments: ['@entity.query', '@entity_type.manager']
+