You are here

SocialGroupQuickjoinSettings.php in Open Social 8.4

File

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

namespace Drupal\social_group_quickjoin\Form;

use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\group\Entity\GroupType;

/**
 * Class SocialEventTypeSettings.
 *
 * @package Drupal\social_group_quickjoin\Form
 */
class SocialGroupQuickjoinSettings extends ConfigFormBase {

  /**
   * {@inheritdoc}
   */
  protected function getEditableConfigNames() {
    return [
      'social_group_quickjoin.settings',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'social_group_quickjoin_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = $this
      ->config('social_group_quickjoin.settings');
    $form['help'] = [
      '#type' => 'item',
      '#markup' => $this
        ->t("Enabling this feature gives site builders the possibility to create group 'quick join' links (ex., /group/1/quickjoin). Furthermore, it's possible to skip the confirmation step on a group type basis."),
    ];
    $form['social_group_quickjoin_enabled'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t("Enable quickjoin"),
      '#description' => $this
        ->t("Allow users to join groups with a single click."),
      '#default_value' => $config
        ->get('social_group_quickjoin_enabled'),
    ];
    $form['grouptypes'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Group types'),
      '#open' => TRUE,
      '#states' => [
        'visible' => [
          ':input[name="social_group_quickjoin_enabled"]' => [
            'checked' => TRUE,
          ],
        ],
      ],
    ];

    /** @var \Drupal\group\Entity\GroupType $group_type */
    foreach ($this
      ->getGroups() as $group_type) {

      // The setting name.
      $setting_name = 'social_group_quickjoin_' . $group_type
        ->id();
      $form['grouptypes'][$setting_name] = [
        '#type' => 'checkbox',
        '#title' => $this
          ->t('Skip confirmation for type @grouptype', [
          '@grouptype' => $group_type
            ->label(),
        ]),
        '#description' => $this
          ->t('Allow users to skip the confirmation step when joining any @grouptype.', [
          '@grouptype' => $group_type
            ->label(),
        ]),
        '#default_value' => $config
          ->get($setting_name),
      ];
    }
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    parent::submitForm($form, $form_state);

    // Set the value for the general setting.
    $this
      ->config('social_group_quickjoin.settings')
      ->set('social_group_quickjoin_enabled', $form_state
      ->getValue('social_group_quickjoin_enabled'))
      ->save();

    /** @var \Drupal\group\Entity\GroupType $group_type */
    foreach ($this
      ->getGroups() as $group_type) {

      // The setting name.
      $setting_name = 'social_group_quickjoin_' . $group_type
        ->id();
      $setting_value = $form_state
        ->getValue('social_group_quickjoin_enabled') ? $form_state
        ->getValue($setting_name) : FALSE;

      // Set the value in the config.
      $this
        ->config('social_group_quickjoin.settings')
        ->set($setting_name, $setting_value);
    }

    // Save the config.
    $this
      ->config('social_group_quickjoin.settings')
      ->save();
  }

  /**
   * Function that returns all groups that outsider can become a member of.
   *
   * @return array
   *   Joinable groups.
   */
  protected function getGroups() {
    $types = [];

    /** @var \Drupal\group\Entity\GroupType $group_type */
    foreach (GroupType::loadMultiple() as $group_type) {

      // We can only select group types that have the 'join group'
      // permission enabled.
      if (in_array('join group', $group_type
        ->getOutsiderRole()
        ->getPermissions())) {
        $types[] = $group_type;
      }
    }
    return $types;
  }

}

Classes

Namesort descending Description
SocialGroupQuickjoinSettings Class SocialEventTypeSettings.