public function SessionTestController::noSet in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php \Drupal\session_test\Controller\SessionTestController::noSet()
- 9 core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php \Drupal\session_test\Controller\SessionTestController::noSet()
Turns off session saving and then tries to save a value anyway.
Parameters
string $test_value: A session value.
Return value
string A notification message.
1 string reference to 'SessionTestController::noSet'
- session_test.routing.yml in core/
modules/ system/ tests/ modules/ session_test/ session_test.routing.yml - core/modules/system/tests/modules/session_test/session_test.routing.yml
File
- core/
modules/ system/ tests/ modules/ session_test/ src/ Controller/ SessionTestController.php, line 101
Class
- SessionTestController
- Controller providing page callbacks for the action admin interface.
Namespace
Drupal\session_test\ControllerCode
public function noSet($test_value) {
\Drupal::service('session_handler.write_safe')
->setSessionWritable(FALSE);
$this
->set($test_value);
return [
'#markup' => $this
->t('session saving was disabled, and then %val was set', [
'%val' => $test_value,
]),
];
}