Skip to content

pedrofs/cakephp-api-flash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CakePHP API Flash

This plugin consists of only a component to be used in your controllers in order to set flash message in the serialized response.

Usage

Load the component in the desired controller:

# the initialize method

$this->loadComponent('ApiFlash');

Then just call the ApiFlashComponent#set(key, message) method from any controller method:

$this->ApiFlash->set('success', 'You were successfully authenticated!')

It will simply add an array to the flash key in the response body:

[
	'flash' => [
		'success' => 'You were successfully authenticated!'
	]
]

Config

You can configure the key which the array will be set in the response. Simply add a key index to the config of loadComponent call:

# the intialize method

$this->loadComponent('ApiFlash', ['key' => 'feedback']);

About

A CakePHP Flash Component to work with API requests

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages