You are here

SocialGroupAddForm.php in Open Social 8.7

File

modules/social_features/social_group/src/Form/SocialGroupAddForm.php
View source
<?php

namespace Drupal\social_group\Form;

use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Render\RendererInterface;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Class SocialGroupAddForm.
 *
 * GroupAddForm.
 *
 * @package Drupal\social_group\Form
 */
class SocialGroupAddForm extends FormBase {

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The renderer service.
   *
   * @var \Drupal\Core\Render\RendererInterface
   */
  protected $renderer;

  /**
   * Constructs a new GroupContentController.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, RendererInterface $renderer) {
    $this->entityTypeManager = $entity_type_manager;
    $this->renderer = $renderer;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('renderer'));
  }

  /**
   * Returns a unique string identifying the form.
   *
   * @return string
   *   The unique string identifying the form.
   */
  public function getFormId() {
    return 'social_group_add';
  }

  /**
   * 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) {
    if ($group_type = $form_state
      ->getValue('group_type')) {
      $url = Url::fromUserInput('/group/add/' . $group_type);
      $form_state
        ->setRedirectUrl($url);
    }
  }

  /**
   * Defines the settings form for Post entities.
   *
   * @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.
   *
   * @return array
   *   Form definition array.
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form['#attributes']['class'][] = 'form--default';
    $form['group_settings'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Settings'),
    ];
    $form['group_settings']['group_type'] = $this
      ->getGroupTypeElement();
    $form['actions']['submit'] = [
      '#prefix' => '<div class="form-actions">',
      '#suffix' => '</div>',
      '#type' => 'submit',
      '#value' => $this
        ->t('Continue'),
      '#button_type' => 'primary',
    ];
    $form['#cache']['contexts'][] = 'user';
    return $form;
  }

  /**
   * Get the group type element.
   *
   * Note this element is also used in the edit group form.
   *
   * @return array
   *   Returns an array containing the group type element and descriptions.
   */
  public function getGroupTypeElement() {
    $user = \Drupal::currentUser();
    $element = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Group type'),
      '#default_value' => 'open_group',
      '#required' => TRUE,
      '#cache' => [
        'tags' => $this->entityTypeManager
          ->getDefinition('group_type')
          ->getListCacheTags(),
      ],
    ];

    // Add help text if the user can't edit group types.
    if (!$user
      ->hasPermission('edit group types')) {
      $element['#description'] = $this
        ->t('In order to change the group type,
        please contact the content or site managers.');
    }
    $group_types_options = [];
    $group_types_descriptions = [];
    $group_types = $this->entityTypeManager
      ->getStorage('group_type')
      ->loadMultiple();

    /** @var \Drupal\group\Entity\GroupTypeInterface $group_type */
    foreach ($group_types as $group_type) {
      $access = $this->entityTypeManager
        ->getAccessControlHandler('group')
        ->createAccess($group_type
        ->id(), NULL, [], TRUE);
      if ($access
        ->isAllowed()) {
        $group_types_options[$group_type
          ->id()] = $group_type
          ->label();
        $group_types_descriptions[$group_type
          ->id()] = [
          '#description' => $group_type
            ->getDescription(),
        ];
      }
      $this->renderer
        ->addCacheableDependency($element, $access);
    }
    arsort($group_types_options);
    $element['#options'] = $group_types_options;
    return $element + $group_types_descriptions;
  }

}

Classes

Namesort descending Description
SocialGroupAddForm Class SocialGroupAddForm.