public function SessionTestController::setMessageButDontSave in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php \Drupal\session_test\Controller\SessionTestController::setMessageButDontSave()
Sets a message but call drupal_save_session(FALSE).
Return value
string A notification message.
1 string reference to 'SessionTestController::setMessageButDontSave'
- 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 131 - Contains \Drupal\session_test\Controller\SessionTestController.
Class
- SessionTestController
- Controller providing page callbacks for the action admin interface.
Namespace
Drupal\session_test\ControllerCode
public function setMessageButDontSave() {
\Drupal::service('session_handler.write_safe')
->setSessionWritable(FALSE);
$this
->setMessage();
return [
'#markup' => '',
];
}