Allows you to "flash" data to the session, which will be available via the session on the next page load, after which the data is removed from the session.
Very useful for:
- Saving submitted form data for form validation, specifically for the Post/Redirect/Get design pattern
- Displaying Success or Error messages after a page reload
flash('thanks_message', 'Thank you for contacting us!');
Elsewhere...
<?php if (flash('thanks_message')): ?>
<?php echo flash('thanks_message') ?>
<?php endif ?>
Install with composer:
// composer.json
{
"require": {
"jevets/kirby-flash": "dev-master"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/jevets/kirby-flash.git"
}
]
}
Then run composer install
or composer update
.
flash('key', 'value');
flash('messages.success', ['Thanks for your feedback!']);
flash('messages.errors', ['Email is a required field']);
flash('username', 'jimihendrix');
$value = flash('key');
$success_messages = flash('messages.success'); // Array( 0 => 'Thanks for your feedback!' )
$username = flash('username'); // "jimihendrix"
flash('messages.errors', [
'Email is required',
'Password is required',
]);
flash('messages.errors'); // Array( 0 => 'Email is required', 1 => 'Password is required' )
<?php if (count(flash('messages.errors')) > 0): ?>
<div class="alert alert-error">
<?php foreach (flash('messages.errors') as $message): ?>
<div><?= html($message) ?></div>
<?php endforeach ?>
</div>
<?php endif ?>
This class loads a global helper function: flash($key, $value = '')
.
The flash()
function is only defined if it doesn't already exist, so you could define your own flash()
function if necessary. Most of the time, you'll probably just use flash()
in your application.
When called with one parameter, the value is returned. If the key doesn't exist, then you'll get back an empty string.
flash('my_key');
When called with two parameters, the $value
is set for the $key
.
If $key
already exists, $value
will replace the existing $key
's value.
flash('my_other_key', 'Some Value');
flash('my_other_key', 'Some Other Value');
flash('my_other_key'); // "Some Other Value"
You may store any kind of data you want in the session. As another example, you could store multiple form validation error messages as an array in a single key.
flash('messages.errors', ['Email is required.', 'Phone is required.']);
flash('messages.errors'); // Array( 0 => 'Email is required.', 1 => 'Phone is required.' )
By default Flash stores data under the session key _flash
.
So you could access flash data like s::get('_flash')
if you wanted to.
Use the static method to change the flash key. (You should probably do this early on in your app, probably in index.php
or site.php
.)
Jevets\Kirby\Flash::setSessionKey('_my_custom_key');
Jevets\Kirby\Flash::sessionKey();
Feel free to send a pull request!
Please use the GitHub issue tracker.