You are here

public function FormController::submitForm in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/condition_test/src/FormController.php \Drupal\condition_test\FormController::submitForm()

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

core/modules/system/tests/modules/condition_test/src/FormController.php, line 65
Contains \Drupal\condition_test\FormController.

Class

FormController
Routing controller class for condition_test testing of condition forms.

Namespace

Drupal\condition_test

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $this->condition
    ->submitConfigurationForm($form, $form_state);
  $config = $this->condition
    ->getConfig();
  foreach ($config['bundles'] as $bundle) {
    drupal_set_message('Bundle: ' . $bundle);
  }
  $article = Node::load(1);
  $this->condition
    ->setContextValue('node', $article);
  if ($this->condition
    ->execute()) {
    drupal_set_message(t('Executed successfully.'));
  }
}