function FormBuilderTest::providerTestFormTokenCacheability
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\FormBuilderTest::providerTestFormTokenCacheability()
- 8.9.x core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\FormBuilderTest::providerTestFormTokenCacheability()
- 10 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\FormBuilderTest::providerTestFormTokenCacheability()
Data provider for testFormTokenCacheability.
Return value
array
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ FormBuilderTest.php, line 989
Class
- FormBuilderTest
- @coversDefaultClass \Drupal\Core\Form\FormBuilder @group Form
Namespace
Drupal\Tests\Core\FormCode
public static function providerTestFormTokenCacheability() {
return [
'token:none,authenticated:true' => [
NULL,
TRUE,
'post',
FALSE,
],
'token:none,authenticated:true,opted_in_for_cache' => [
NULL,
TRUE,
'post',
TRUE,
],
'token:none,authenticated:false' => [
NULL,
FALSE,
'post',
FALSE,
],
'token:false,authenticated:false' => [
FALSE,
FALSE,
'post',
FALSE,
],
'token:false,authenticated:true' => [
FALSE,
TRUE,
'post',
FALSE,
],
'token:none,authenticated:false,method:get' => [
NULL,
FALSE,
'get',
FALSE,
],
'token:test_form_id,authenticated:false,method:get' => [
'test_form_id',
TRUE,
'get',
FALSE,
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.