You are here

class GroupRequestMembershipRejectForm in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_group/modules/social_group_request/src/Form/GroupRequestMembershipRejectForm.php \Drupal\social_group_request\Form\GroupRequestMembershipRejectForm
  2. 10.3.x modules/social_features/social_group/modules/social_group_request/src/Form/GroupRequestMembershipRejectForm.php \Drupal\social_group_request\Form\GroupRequestMembershipRejectForm
  3. 10.1.x modules/social_features/social_group/modules/social_group_request/src/Form/GroupRequestMembershipRejectForm.php \Drupal\social_group_request\Form\GroupRequestMembershipRejectForm
  4. 10.2.x modules/social_features/social_group/modules/social_group_request/src/Form/GroupRequestMembershipRejectForm.php \Drupal\social_group_request\Form\GroupRequestMembershipRejectForm

Provides a confirmation form before rejecting membership.

Hierarchy

Expanded class hierarchy of GroupRequestMembershipRejectForm

1 file declares its use of GroupRequestMembershipRejectForm
SocialGroupRequestRouteSubscriber.php in modules/social_features/social_group/modules/social_group_request/src/Routing/SocialGroupRequestRouteSubscriber.php

File

modules/social_features/social_group/modules/social_group_request/src/Form/GroupRequestMembershipRejectForm.php, line 20

Namespace

Drupal\social_group_request\Form
View source
class GroupRequestMembershipRejectForm extends FormBase {

  /**
   * Group entity.
   *
   * @var \Drupal\group\Entity\GroupInterface
   */
  protected $group;

  /**
   * Group membership request.
   *
   * @var \Drupal\group\Entity\GroupContentInterface
   */
  protected $groupContent;

  /**
   * The redirect destination helper.
   *
   * @var \Drupal\Core\Routing\RedirectDestinationInterface
   */
  protected $redirectDestination;

  /**
   * The cache tags invalidator.
   *
   * @var \Drupal\Core\Cache\CacheTagsInvalidatorInterface
   */
  protected $cacheTagsInvalidator;

  /**
   * The current user.
   *
   * @var \Drupal\Core\Session\AccountInterface
   */
  protected $currentUser;

  /**
   * GroupRequestMembershipRejectForm constructor.
   *
   * @param \Drupal\Core\Routing\RedirectDestinationInterface $redirect_destination
   *   The redirect destination.
   * @param \Drupal\Core\Cache\CacheTagsInvalidatorInterface $cache_tags_invalidator
   *   The cache tags invalidator.
   * @param \Drupal\Core\Session\AccountInterface $current_user
   *   The current user.
   * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
   *   The string translation.
   */
  public function __construct(RedirectDestinationInterface $redirect_destination, CacheTagsInvalidatorInterface $cache_tags_invalidator, AccountInterface $current_user, TranslationInterface $string_translation) {
    $this->redirectDestination = $redirect_destination;
    $this->cacheTagsInvalidator = $cache_tags_invalidator;
    $this->currentUser = $current_user;
    $this
      ->setStringTranslation($string_translation);
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('redirect.destination'), $container
      ->get('cache_tags.invalidator'), $container
      ->get('current_user'), $container
      ->get('string_translation'));
  }

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

  /**
   * {@inheritdoc}
   */
  private function getCancelUrl() {
    return Url::fromUserInput($this->redirectDestination
      ->get());
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, GroupInterface $group = NULL, GroupContentInterface $group_content = NULL) {
    $this->group = $group;
    $this->groupContent = $group_content;
    $form['#attributes']['class'][] = 'form--default';
    $form['question'] = [
      '#type' => 'html_tag',
      '#tag' => 'p',
      '#value' => $this
        ->t('Are you sure you want to reject the membership request for @name?', [
        '@name' => $group_content
          ->getEntity()
          ->getDisplayName(),
      ]),
      '#weight' => 1,
      '#prefix' => '<div class="card"><div class="card__block">',
      '#suffix' => '</div></div>',
    ];
    $form['actions']['#type'] = 'actions';
    $form['actions']['cancel'] = [
      '#type' => 'link',
      '#title' => $this
        ->t('Cancel'),
      '#attributes' => [
        'class' => [
          'button',
          'button--flat',
          'btn',
          'btn-flat',
          'waves-effect',
          'waves-btn',
        ],
      ],
      '#url' => $this
        ->getCancelUrl(),
    ];
    $form['actions']['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Yes'),
      '#button_type' => 'primary',
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $this->groupContent
      ->set('grequest_status', GroupMembershipRequest::REQUEST_REJECTED)
      ->set('grequest_updated_by', $this->currentUser
      ->id());
    $result = $this->groupContent
      ->save();
    if ($result) {
      $this
        ->messenger()
        ->addStatus($this
        ->t('Membership request rejected'));
    }
    else {
      $this
        ->messenger()
        ->addError($this
        ->t('Error updating Request'));
    }
    $this->cacheTagsInvalidator
      ->invalidateTags([
      'request-membership:' . $this->group
        ->id(),
    ]);
    $form_state
      ->setRedirectUrl($this
      ->getCancelUrl());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 3
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::config protected function Retrieves a configuration object.
FormBase::configFactory protected function Gets the config factory for this form. 3
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 72
GroupRequestMembershipRejectForm::$cacheTagsInvalidator protected property The cache tags invalidator.
GroupRequestMembershipRejectForm::$currentUser protected property The current user.
GroupRequestMembershipRejectForm::$group protected property Group entity.
GroupRequestMembershipRejectForm::$groupContent protected property Group membership request.
GroupRequestMembershipRejectForm::$redirectDestination protected property The redirect destination helper. Overrides RedirectDestinationTrait::$redirectDestination
GroupRequestMembershipRejectForm::buildForm public function Form constructor. Overrides FormInterface::buildForm
GroupRequestMembershipRejectForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
GroupRequestMembershipRejectForm::getCancelUrl private function
GroupRequestMembershipRejectForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
GroupRequestMembershipRejectForm::submitForm public function Form submission handler. Overrides FormInterface::submitForm
GroupRequestMembershipRejectForm::__construct public function GroupRequestMembershipRejectForm constructor.
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.