Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/irfaardy/php-flash-message

Flash Message for PHP, Belajar bikin package
https://github.com/irfaardy/php-flash-message

flashmessage message php php7 session

Last synced: 11 days ago
JSON representation

Flash Message for PHP, Belajar bikin package

Awesome Lists containing this project

README

        

# Flash Message

> **Configuration File**
> Irfa/Flashmsg/config.php

**

Basic Usage

**

```php
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);

```php
...
///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);

```php
...
///GET FLASH MESSAGE
Flash::get('msg');
...
```