You are here

FeedbackMessageAddController.php in Feedback 3.x

File

src/Controller/FeedbackMessageAddController.php
View source
<?php

namespace Drupal\feedback\Controller;

use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Link;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;

/**
 * Class FeedbackMessageAddController.
 *
 * @package Drupal\feedback\Controller
 */
class FeedbackMessageAddController extends ControllerBase {

  /**
   * FeedbackMessageAddController constructor.
   *
   * @param \Drupal\Core\Entity\EntityStorageInterface $storage
   * @param \Drupal\Core\Entity\EntityStorageInterface $type_storage
   */
  public function __construct(EntityStorageInterface $storage, EntityStorageInterface $type_storage) {
    $this->storage = $storage;
    $this->typeStorage = $type_storage;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {

    /** @var \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager */
    $entity_type_manager = $container
      ->get('entity_type.manager');
    return new static($entity_type_manager
      ->getStorage('feedback_message'), $entity_type_manager
      ->getStorage('feedback_message_type'));
  }

  /**
   * Displays add links for available bundles/types for entity feedback_message.
   *
   * @param \Symfony\Component\HttpFoundation\Request $request
   *   The current request object.
   *
   * @return array
   *   A render array for a list of the feedback_message bundles/types that can
   *   be added or if there is only one type/bunlde defined for the site, the
   *   function returns the add page for that bundle/type.
   */
  public function add(Request $request) {
    $types = $this->typeStorage
      ->loadMultiple();
    if ($types && count($types) == 1) {
      $type = reset($types);
      return $this
        ->addForm($type, $request);
    }
    if (count($types) === 0) {
      return [
        '#markup' => $this
          ->t('You have not created any %bundle types yet. @link to add a new type.', [
          '%bundle' => 'Feedback message',
          '@link' => Link::fromTextAndUrl($this
            ->t('Go to the type creation page'), Url::fromRoute('entity.feedback_message_type.add_form')),
        ]),
      ];
    }
    return [
      '#theme' => 'feedback_message_content_add_list',
      '#content' => $types,
    ];
  }

  /**
   * Presents creation form for feedback_message entities of given bundle/type.
   *
   * @param \Drupal\Core\Entity\EntityInterface $feedback_message_type
   *   The custom bundle to add.
   * @param \Symfony\Component\HttpFoundation\Request $request
   *   The current request object.
   *
   * @return array
   *   A form array as expected by drupal_render().
   */
  public function addForm(EntityInterface $feedback_message_type, Request $request) {
    $entity = $this->storage
      ->create([
      'type' => $feedback_message_type
        ->id(),
    ]);
    return $this
      ->entityFormBuilder()
      ->getForm($entity);
  }

  /**
   * Provides the page title for this controller.
   *
   * @param \Drupal\Core\Entity\EntityInterface $feedback_message_type
   *   The custom bundle/type being added.
   *
   * @return string
   *   The page title.
   */
  public function getAddFormTitle(EntityInterface $feedback_message_type) {
    return $this
      ->t('Create of bundle @label', [
      '@label' => $feedback_message_type
        ->label(),
    ]);
  }

}

Classes

Namesort descending Description
FeedbackMessageAddController Class FeedbackMessageAddController.