function ElementTest::providerVisibleChildren

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::providerVisibleChildren()
  2. 10 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::providerVisibleChildren()
  3. 11.x core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::providerVisibleChildren()

Data provider for testVisibleChildren.

Return value

array

File

core/tests/Drupal/Tests/Core/Render/ElementTest.php, line 143

Class

ElementTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Render%21Element.php/class/Element/9" title="Provides helper methods for Drupal render elements." class="local">\Drupal\Core\Render\Element</a> @group Render

Namespace

Drupal\Tests\Core\Render

Code

public function providerVisibleChildren() {
    return [
        [
            [
                '#property1' => '',
                '#property2' => [],
            ],
            [],
        ],
        [
            [
                '#property1' => '',
                'child1' => [],
            ],
            [
                'child1',
            ],
        ],
        [
            [
                '#property1' => '',
                'child1' => [],
                'child2' => [
                    '#access' => TRUE,
                ],
            ],
            [
                'child1',
                'child2',
            ],
        ],
        [
            [
                '#property1' => '',
                'child1' => [],
                'child2' => [
                    '#access' => FALSE,
                ],
            ],
            [
                'child1',
            ],
        ],
        'access_result_object_allowed' => [
            [
                '#property1' => '',
                'child1' => [],
                'child2' => [
                    '#access' => AccessResult::allowed(),
                ],
            ],
            [
                'child1',
                'child2',
            ],
        ],
        'access_result_object_forbidden' => [
            [
                '#property1' => '',
                'child1' => [],
                'child2' => [
                    '#access' => AccessResult::forbidden(),
                ],
            ],
            [
                'child1',
            ],
        ],
        [
            [
                '#property1' => '',
                'child1' => [],
                'child2' => [
                    '#type' => 'textfield',
                ],
            ],
            [
                'child1',
                'child2',
            ],
        ],
        [
            [
                '#property1' => '',
                'child1' => [],
                'child2' => [
                    '#type' => 'value',
                ],
            ],
            [
                'child1',
            ],
        ],
        [
            [
                '#property1' => '',
                'child1' => [],
                'child2' => [
                    '#type' => 'hidden',
                ],
            ],
            [
                'child1',
            ],
        ],
    ];
}

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