Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

zendframework/zend-mvc-plugin-flashmessenger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3c90202 · Jan 20, 2020

History

76 Commits
Oct 19, 2019
Sep 5, 2018
Apr 30, 2018
Sep 13, 2016
Apr 27, 2018
Apr 27, 2018
Dec 15, 2018
Oct 19, 2019
Oct 19, 2019
Jan 20, 2020
Oct 19, 2019
Oct 19, 2019
Oct 19, 2019
Nov 13, 2016
Apr 27, 2018

zend-mvc-plugin-flashmessenger

Repository abandoned 2019-12-31

This repository has moved to laminas/laminas-mvc-plugin-flashmessenger.

Build Status Coverage Status

Flash messages derive from Rails, and are used to expose messages from one action to the next, after which they are cleared; a typical use case is with Post/Redirect/Get, where they are created in the POST handler, and then displayed by the GET handler to indicate success or failure to the end-user.

This component provides a flash messenger controller plugin for zend-mvc versions 3.0 and up.

Installation

Run the following to install this library:

$ composer require zendframework/zend-mvc-plugin-flashmessenger

If you are using the zend-component-installer, you're done!

If not, you will need to add the component as a module to your application. Add the entry 'Zend\Mvc\Plugin\FlashMessenger' to your list of modules in your application configuration (typically one of config/application.config.php or config/modules.config.php).

Documentation

Browse the documentation online at https://docs.zendframework.com/zend-mvc-plugin-flashmessenger/

Support