Download the PHP package mnshankar/flashmessenger without Composer
On this page you can find all versions of the php package mnshankar/flashmessenger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mnshankar/flashmessenger
More information about mnshankar/flashmessenger
Files in mnshankar/flashmessenger
Package flashmessenger
Short Description Easy flash notifications for Laravel 4 and PHP-5.3
License MIT
Informations about the package flashmessenger
Easy Flash Messages
Installation
First, pull in the package through Composer.
And then, if using Laravel, include the service provider within app/config/app.php
.
And, for convenience, add a facade alias to this same file at the bottom:
Usage
Within your controllers, before you perform a redirect...
You may also do:
- 'Flash::info('Message')`
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:
- 'flash_notification.message' - The message you're flashing
- 'flash_notification.level' - A string that represents the type of notification (good for applying HTML class names)
With this message flashed to the session, you may now display it in your view(s). Maybe something like:
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:
Example
If you need to modify the flash message partials, you can run:
The two package views will now be located in the `app/views/packages/mnshankar/flashmessenger/' directory.
Credits
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.