function ElementTest::providerVisibleChildren
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::providerVisibleChildren()
- 10 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::providerVisibleChildren()
- 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 \Drupal\Core\Render\Element @group Render
Namespace
Drupal\Tests\Core\RenderCode
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.