function FormHelperTest::providerElements

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/FormHelperTest.php \Drupal\Tests\Core\Form\FormHelperTest::providerElements()
  2. 10 core/tests/Drupal/Tests/Core/Form/FormHelperTest.php \Drupal\Tests\Core\Form\FormHelperTest::providerElements()
  3. 11.x core/tests/Drupal/Tests/Core/Form/FormHelperTest.php \Drupal\Tests\Core\Form\FormHelperTest::providerElements()

Provides a list of elements to test.

File

core/tests/Drupal/Tests/Core/Form/FormHelperTest.php, line 100

Class

FormHelperTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Form%21FormHelper.php/class/FormHelper/8.9.x" title="Provides helpers to operate on forms." class="local">\Drupal\Core\Form\FormHelper</a> @group Form

Namespace

Drupal\Tests\Core\Form

Code

public function providerElements() {
    return [
        [
            [
                '#type' => 'date',
                '#states' => [
                    'visible' => [
                        ':input[name="toggle_me"]' => [
                            'checked' => TRUE,
                        ],
                    ],
                ],
            ],
            '#attributes',
        ],
        [
            [
                '#type' => 'item',
                '#states' => [
                    'visible' => [
                        ':input[name="foo"]' => [
                            'value' => 'bar',
                        ],
                    ],
                ],
            ],
            '#wrapper_attributes',
        ],
    ];
}

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