Download the PHP package arkraft/alerts without Composer
On this page you can find all versions of the php package arkraft/alerts. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download arkraft/alerts
More information about arkraft/alerts
Files in arkraft/alerts
Package alerts
Short Description Using bootstrap growl to create alerts inside controllers.
License MIT
Informations about the package alerts
alerts
Laravel 4 Alerts provider to add bootstrap alerts from controllers using the great bootstrap-growl jquery plugin by Nick Larson.
Installation
Install with composer
Register the service provicer in app/config/app.php
in the providers array
Add an alias under the alias array in app/config/app.php
And the last step ist to publish the assets. Execute the following command in the root of your project
This will add the jquery.bootstrap-growl.min.js
to your public/packages/jquery
directory.
Usage
Now you can add alerts from your controller. The following message types are possible
- Alerts::addInfo
- Alerts::addSuccess
- Alerts::addWarning
- Alerts::addDanger
All methods have the same parameters:
- message: the message you want to print
- title (optional): the title of the message (will be prepended in strong letters to the message)
- configuration (optional): additional configuration array For Example:
will an the following message
Displaying the alerts
Add
to your sites javascripts.
Configuration
You can export the default configuration with
This will export the following array to 'config/packages/arkraft/alerts/config.php'
The configuration values:
- offset: array with offset values, the alerts will apear 40px from top
- align: possible values are right, center and left.
- width: the width of the message box
- delay: delay for the message to disappear, this message will stay for 4 seconds before it disappears
- allowDismiss: true will print a close button on the right side of the alert box
- stackupSpacing: spacing between multiple alert boxes
The changes on this configuration file are global for all boxe. To change the configuration for a single alert you can use the configuration parameter like this
This will show a message wich will stay in the center of the screen until it is closed with the close button on the right. Configurations passed as a parameter will overwrite the default configuration.