Package Data | |
---|---|
Maintainer Username: | mnshankar |
Maintainer Contact: | mnshankar@gmail.com (Shankar Manamalkav) |
Package Create Date: | 2015-02-25 |
Package Last Update: | 2015-06-17 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-26 15:05:25 |
Package Statistics | |
---|---|
Total Downloads: | 111 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
First, pull in the package through Composer.
"require": {
"mnshankar/flashmessenger": "1.1"
}
And then, if using Laravel, include the service provider within app/config/app.php
.
'providers' => array(
'mnshankar\Flash\FlashServiceProvider'
);
And, for convenience, add a facade alias to this same file at the bottom:
'aliases' => array(
'Flash' => 'mnshankar\Flash\Flash'
);
Within your controllers, before you perform a redirect...
public function store()
{
Flash::message('Welcome Aboard!');
return Redirect::home();
}
You may also do:
Flash::success('Message')
Flash::error('Message')
Flash::warning('Message')
Flash::overlay('Modal Message', 'Modal Title')
Again, if using Laravel, this will set three keys in the session:
With this message flashed to the session, you may now display it in your view(s). Maybe something like:
@if (Session::has('flash_notification.message'))
<div class="alert alert-{{ Session::get('flash_notification.level') }}">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
{{ Session::get('flash_notification.message') }}
</div>
@endif
Note that this package is optimized for use with Twitter Bootstrap.
Because flash messages and overlays are so common, if you want, you may use (or modify) the views that are included with this package. Simply append to your layout view:
@include('flashmessenger::message')
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>
<body>
<div class="container">
@include('flashmessenger::message')
<p>Welcome to my website...</p>
</div>
<script src="//code.jquery.com/jquery.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<!-- This is only necessary if you do Flash::overlay('...') -->
<script>
$('#flash-overlay-modal').modal();
</script>
</body>
</html>
If you need to modify the flash message partials, you can run:
php artisan view:publish mnshankar/flashmessenger
The two package views will now be located in the `app/views/packages/mnshankar/flashmessenger/' directory.
This is almost a verbatim copy of Jeffrey Way's Flash library (https://github.com/laracasts/flash) .. I just tweaked it (very slightly) so I can use it with php 5.3.