function EntityTest::providerTestTokens
Same name in other branches
- 8.9.x core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php \Drupal\Tests\views\Unit\Plugin\area\EntityTest::providerTestTokens()
- 10 core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php \Drupal\Tests\views\Unit\Plugin\area\EntityTest::providerTestTokens()
- 11.x core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php \Drupal\Tests\views\Unit\Plugin\area\EntityTest::providerTestTokens()
Data provider for testing different types of tokens.
Return value
array
File
-
core/
modules/ views/ tests/ src/ Unit/ Plugin/ area/ EntityTest.php, line 144
Class
- EntityTest
- @coversDefaultClass \Drupal\views\Plugin\views\area\Entity @group Entity
Namespace
Drupal\Tests\views\Unit\Plugin\areaCode
public function providerTestTokens() {
return [
[
'{{ raw_arguments.test1 }}',
5,
],
[
'{{ arguments.test2 }}',
6,
],
[
'{{ test_render_token }}',
7,
],
[
'{{ test:global_token }}',
8,
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.