irfa / php-flash-message
"Flash Message for PHP"
v1.0
2020-02-20 13:15 UTC
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2024-11-27 18:01:36 UTC
README
Configuration File Irfa/Flashmsg/config.php
Basic Usage
<?php require_once 'Autoloader.php'; use Irfa\Flashmsg\Flash; ...
Set Flash Message
You are free to set this message type, change css class or message view in config file.
Flash::set(key , message, type);
... ///SET FLASH Fail Flash::set('fail-msg' , 'Description is required','fail'); ///SET FLASH Success Flash::set('success-msg' , 'Update Success','success'); ///SET FLASH Info Flash::set('info-msg' , 'Please wait 1 minutes','success'); ///SET FLASH Warning Flash::set('warning-msg' , 'Username or Password Invalid','warning'); ///SET FLASH general Flash::set('general-msg' , 'Hello, i'm Message','general'); ///SET FLASH Other Flash::set('other-msg' , 'Just Other Message','other'); ...
Get Flash Message
Flash::get(key);
... ///GET FLASH MESSAGE Flash::get('msg'); ...