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

Replaces links from zendframework.github.io to docs.zendframework.com #175

Merged
merged 1 commit into from
Dec 6, 2018
Merged
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 doc/book/helpers/advanced-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ helpers, specifically an instance of `Zend\View\HelperPluginManager`, which
extends `Zend\ServiceManager\AbstractPluginManager`, which is itself an
extension of `Zend\ServiceManager\ServiceManager`. `HelperPluginManager` is a
specialized service manager, so you can register a helper/plugin like any other
service (see the [Service Manager documentation](http://zendframework.github.io/zend-servicemanager/configuring-the-service-manager/)
service (see the [Service Manager documentation](https://docs.zendframework.com/zend-servicemanager/configuring-the-service-manager/)
for more information).

Programmatically, this is done as follows:
Expand Down
2 changes: 1 addition & 1 deletion doc/book/helpers/doctype.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,4 @@ Here is how you check if the doctype is set to `XHTML1_RDFA`:
## Zend MVC View Manager

If you're running a ZendMvc application, you should specify doctype via the
[ViewManager](https://zendframework.github.io/zend-mvc/services/#viewmanager) service.
[ViewManager](https://docs.zendframework.com/zend-mvc/services/#viewmanager) service.
2 changes: 1 addition & 1 deletion doc/book/helpers/flash-messenger.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FlashMessenger

The `FlashMessenger` helper is used to render the messages of the
[FlashMessenger MVC plugin](http://zendframework.github.io/zend-mvc-plugin-flashmessenger/).
[FlashMessenger MVC plugin](https://docs.zendframework.com/zend-mvc-plugin-flashmessenger/).

## Basic Usage

Expand Down
8 changes: 4 additions & 4 deletions doc/book/helpers/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,25 +85,25 @@ for, and rendering, the various HTML `<head>` tags, such as `HeadTitle`,
> ### i18n helpers
>
> View helpers related to **Internationalization** are documented in the
> [I18n View Helpers](http://zendframework.github.io/zend-i18n/view-helpers/)
> [I18n View Helpers](https://docs.zendframework.com/zend-i18n/view-helpers/)
> documentation.

> ### Form helpers
>
> View helpers related to **form** are documented in the
> [Form View Helpers](https://zendframework.github.io/zend-form/helper/intro/)
> [Form View Helpers](https://docs.zendframework.com/zend-form/helper/intro/)
> documentation.

> ### Navigation helpers
>
> View helpers related to **navigation** are documented in the
> [Navigation View Helpers](https://zendframework.github.io/zend-navigation/helpers/intro/)
> [Navigation View Helpers](https://docs.zendframework.com/zend-navigation/helpers/intro/)
> documentation.

> ### Pagination helpers
>
> View helpers related to **paginator** are documented in the
> [Paginator Usage](https://zendframework.github.io/zend-paginator/usage/#rendering-pages-with-view-scripts)
> [Paginator Usage](https://docs.zendframework.com/zend-paginator/usage/#rendering-pages-with-view-scripts)
> documentation.

> ### Custom helpers
Expand Down
8 changes: 4 additions & 4 deletions doc/book/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ Additionally, zend-mvc integrates with zend-view via a number of event listeners
in the `Zend\Mvc\View` namespace.

This section of the manual is designed to show you typical usage patterns of the
view layer when using it with [zend-mvc](https://zendframework.github.io/zend-mvc/).
The assumption is that you are using the [service manager](https://zendframework.github.io/zend-servicemanager/)
view layer when using it with [zend-mvc](https://docs.zendframework.com/zend-mvc/).
The assumption is that you are using the [service manager](https://docs.zendframework.com/zend-servicemanager/)
and the default MVC view strategies.

## Configuration
Expand Down Expand Up @@ -159,7 +159,7 @@ The MVC registers a couple of listeners for controllers to automate this. The
first will look to see if you returned an associative array from your
controller; if so, it will create a View Model and make this associative array
the Variables Container; this View Model then replaces the
[MvcEvent](http://zendframework.github.io/zend-mvc/mvc-event/)'s result. It will
[MvcEvent](https://docs.zendframework.com/zend-mvc/mvc-event/)'s result. It will
also look to see if you returned nothing or `null`; if so, it will create a View
Model without any variables attached; this View Model also replaces the
`MvcEvent`'s result.
Expand Down Expand Up @@ -771,4 +771,4 @@ class MyController extends AbstractActionController
```

Or you could switch the `ViewModel` dynamically based on the "Accept" HTTP Header with the
[Zend-Mvc-Plugin AcceptableViewModelSelector](http://zendframework.github.io/zend-mvc/plugins/#acceptableviewmodelselector-plugin).
[Zend-Mvc-Plugin AcceptableViewModelSelector](https://docs.zendframework.com/zend-mvc/plugins/#acceptableviewmodelselector-plugin).