Skip to content

frjf14/cflashmessage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scrutinizer Code Quality Code Coverage Build Status

Flash messages - Anax MVC

cflashmessage handles error, success, notice and warning messages, which can be used to give the user feedback.

License

This software is free software and carries a MIT license.

How to use flash messages

Adding it as shared service in the frontcontroller.

$di->setShared('flashmessage', function() { $flashmessage = new \frjf14\FlashMessage\CFlashMessage(); return $flashmessage; });

From the package Copy the css file: frjf14/cflashmessage/src/css/flashmessage.css to the webroot css folder: webroot/css/ then add the css to the frontcontroller $app->theme->addStylesheet('css/flashmessage.css'); or just link directly to the CSS file within the package $app->theme->addStylesheet('../vendor/frjf14/cflashmessage/src/css/flashmessage.css');

Now you can add flash messages as an example error message: $app->flashmessage->addError('An error message.'); and to display the message use $app->flashmessage->getFlashMessages(); to retrive the message(s) as html.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published