You are here

public static function Registrants::submitRemovePerson in RNG - Events and Registrations 8

Same name and namespace in other branches
  1. 8.2 src/Element/Registrants.php \Drupal\rng\Element\Registrants::submitRemovePerson()
  2. 3.x src/Element/Registrants.php \Drupal\rng\Element\Registrants::submitRemovePerson()

Submission callback for removing a registrant.

Parameters

array $form: The complete form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

File

src/Element/Registrants.php, line 1027

Class

Registrants
Provides a form element for a registrant and person association.

Namespace

Drupal\rng\Element

Code

public static function submitRemovePerson(array $form, FormStateInterface $form_state) {
  $form_state
    ->setRebuild();
  $element = RegistrantsElement::findElement($form, $form_state);
  $utility = new RegistrantsElement($element, $form_state);
  $trigger = $form_state
    ->getTriggeringElement();
  $row = $trigger['#identity_element_registrant_row'];
  $registrants = $utility
    ->getRegistrants();
  unset($registrants[$row]);
  $utility
    ->setRegistrants($registrants);
}