You are here

public function WebformResultsCustomForm::validateForm in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Form/WebformResultsCustomForm.php \Drupal\webform\Form\WebformResultsCustomForm::validateForm()

Form validation 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 FormBase::validateForm

File

src/Form/WebformResultsCustomForm.php, line 393

Class

WebformResultsCustomForm
Webform for webform results custom(ize) webform.

Namespace

Drupal\webform\Form

Code

public function validateForm(array &$form, FormStateInterface $form_state) {
  $columns = $form_state
    ->getValue('columns');
  if (empty($columns)) {
    $form_state
      ->setErrorByName('columns', $this
      ->t('At least once column is required'));
  }
}