You are here

public function RequiredContextDelete::submitForm in Chaos Tool Suite (ctools) 8.3

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

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

Overrides FormInterface::submitForm

File

src/Form/RequiredContextDelete.php, line 85

Class

RequiredContextDelete
Base class for adding a required contexts step to your wizard.

Namespace

Drupal\ctools\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $cached_values = $this->tempstore
    ->get($this->tempstore_id)
    ->get($this->machine_name);
  $contexts = $this
    ->getContexts($cached_values);
  unset($contexts[$this->id]);
  $cached_values = $this
    ->setContexts($cached_values, $contexts);
  $this->tempstore
    ->get($this->tempstore_id)
    ->set($this->machine_name, $cached_values);
  list($route_name, $route_parameters) = $this
    ->getParentRouteInfo($cached_values);
  $form_state
    ->setRedirect($route_name, $route_parameters);
}