ViewsTestDataErrorForm.php

Same filename in other branches
  1. 9 core/modules/views/tests/modules/views_test_data/src/Form/ViewsTestDataErrorForm.php
  2. 8.9.x core/modules/views/tests/modules/views_test_data/src/Form/ViewsTestDataErrorForm.php
  3. 10 core/modules/views/tests/modules/views_test_data/src/Form/ViewsTestDataErrorForm.php

Namespace

Drupal\views_test_data\Form

File

core/modules/views/tests/modules/views_test_data/src/Form/ViewsTestDataErrorForm.php

View source
<?php

declare (strict_types=1);
namespace Drupal\views_test_data\Form;

use Drupal\Core\Form\FormInterface;
use Drupal\Core\Form\FormStateInterface;

/**
 * Implements a test form that has a validation error.
 */
class ViewsTestDataErrorForm implements FormInterface {
    
    /**
     * {@inheritdoc}
     */
    public function getFormId() {
        return 'views_test_data_error_form';
    }
    
    /**
     * {@inheritdoc}
     */
    public function buildForm(array $form, FormStateInterface $form_state) {
        $form['text'] = [
            '#type' => 'textfield',
        ];
        $form['submit'] = [
            '#type' => 'submit',
            '#value' => t('Submit'),
        ];
        return $form;
    }
    
    /**
     * {@inheritdoc}
     */
    public function validateForm(array &$form, FormStateInterface $form_state) {
        $form_state->setErrorByName('text', t('Form validation error'));
    }
    
    /**
     * {@inheritdoc}
     */
    public function submitForm(array &$form, FormStateInterface $form_state) {
    }

}

Classes

Title Deprecated Summary
ViewsTestDataErrorForm Implements a test form that has a validation error.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.