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

Remove FlashMessenger view helper #95

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cache:
env:
global:
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
- LATEST_DEPS="zendframework/zend-mvc-plugin-flashmessenger zendframework/zend-mvc-i18n zendframework/zend-mvc-console"
- LATEST_DEPS="zendframework/zend-mvc-i18n zendframework/zend-mvc-console"
- SITE_URL=https://zendframework.github.io/zend-view
- GH_USER_NAME="Matthew Weier O'Phinney"
- [email protected]
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 3.0.0

- Moved `FlashMessenger` view helper to be together with corresponding [MVC Controller Plugin](https://github.com/zendframework/zend-mvc-plugin-flashmessenger/issues/3)

## 2.8.2 - TBD

### Added
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"zendframework/zend-mvc": "Zend\\Mvc component",
"zendframework/zend-navigation": "Zend\\Navigation component",
"zendframework/zend-paginator": "Zend\\Paginator component",
"zendframework/zend-mvc-plugin-flashmessenger" : "Zend FlashMessenger plugin component",
"zendframework/zend-permissions-acl": "Zend\\Permissions\\Acl component",
"zendframework/zend-servicemanager": "Zend\\ServiceManager component",
"zendframework/zend-uri": "Zend\\Uri component"
Expand Down
146 changes: 0 additions & 146 deletions doc/book/helpers/flash-messenger.md

This file was deleted.

7 changes: 6 additions & 1 deletion doc/book/helpers/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ for, and rendering, the various HTML `<head>` tags, such as `HeadTitle`,
- [BasePath](base-path.md)
- [Cycle](cycle.md)
- [Doctype](doctype.md)
- [FlashMessenger](flash-messenger.md)
- [Gravatar](gravatar.md)
- [HeadLink](head-link.md)
- [HeadMeta](head-meta.md)
Expand Down Expand Up @@ -105,6 +104,12 @@ for, and rendering, the various HTML `<head>` tags, such as `HeadTitle`,
> [Paginator Usage](https://zendframework.github.io/zend-paginator/usage/#rendering-pages-with-view-scripts)
> documentation.

> ### FlashMessenger helper
>
> View helper related to **Flash Messenger** is documented in the
> [FLash Messenger View Helper](https://docs.zendframework.com/zend-mvc-plugin-flashmessenger/view-helper)
> documentation.

> ### Custom helpers
>
> For documentation on writing **custom view helpers** see the
Expand Down
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ pages:
- BasePath: helpers/base-path.md
- Cycle: helpers/cycle.md
- Doctype: helpers/doctype.md
- FlashMessenger: helpers/flash-messenger.md
- Gravatar: helpers/gravatar.md
- HeadLink: helpers/head-link.md
- HeadMeta: helpers/head-meta.md
Expand Down
Loading