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

Commit 64fcf9b

Browse files
committed
Merge pull request #175 from zendframework/hotfix/docs/old-links
Replaces links from zendframework.github.io to docs.zendframework.com
2 parents c1a3f20 + 9f9c74f commit 64fcf9b

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

doc/book/helpers/advanced-usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ helpers, specifically an instance of `Zend\View\HelperPluginManager`, which
77
extends `Zend\ServiceManager\AbstractPluginManager`, which is itself an
88
extension of `Zend\ServiceManager\ServiceManager`. `HelperPluginManager` is a
99
specialized service manager, so you can register a helper/plugin like any other
10-
service (see the [Service Manager documentation](http://zendframework.github.io/zend-servicemanager/configuring-the-service-manager/)
10+
service (see the [Service Manager documentation](https://docs.zendframework.com/zend-servicemanager/configuring-the-service-manager/)
1111
for more information).
1212

1313
Programmatically, this is done as follows:

doc/book/helpers/doctype.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ Here is how you check if the doctype is set to `XHTML1_RDFA`:
132132
## Zend MVC View Manager
133133

134134
If you're running a ZendMvc application, you should specify doctype via the
135-
[ViewManager](https://zendframework.github.io/zend-mvc/services/#viewmanager) service.
135+
[ViewManager](https://docs.zendframework.com/zend-mvc/services/#viewmanager) service.

doc/book/helpers/flash-messenger.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# FlashMessenger
22

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

66
## Basic Usage
77

doc/book/helpers/intro.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -85,25 +85,25 @@ for, and rendering, the various HTML `<head>` tags, such as `HeadTitle`,
8585
> ### i18n helpers
8686
>
8787
> View helpers related to **Internationalization** are documented in the
88-
> [I18n View Helpers](http://zendframework.github.io/zend-i18n/view-helpers/)
88+
> [I18n View Helpers](https://docs.zendframework.com/zend-i18n/view-helpers/)
8989
> documentation.
9090
9191
> ### Form helpers
9292
>
9393
> View helpers related to **form** are documented in the
94-
> [Form View Helpers](https://zendframework.github.io/zend-form/helper/intro/)
94+
> [Form View Helpers](https://docs.zendframework.com/zend-form/helper/intro/)
9595
> documentation.
9696
9797
> ### Navigation helpers
9898
>
9999
> View helpers related to **navigation** are documented in the
100-
> [Navigation View Helpers](https://zendframework.github.io/zend-navigation/helpers/intro/)
100+
> [Navigation View Helpers](https://docs.zendframework.com/zend-navigation/helpers/intro/)
101101
> documentation.
102102
103103
> ### Pagination helpers
104104
>
105105
> View helpers related to **paginator** are documented in the
106-
> [Paginator Usage](https://zendframework.github.io/zend-paginator/usage/#rendering-pages-with-view-scripts)
106+
> [Paginator Usage](https://docs.zendframework.com/zend-paginator/usage/#rendering-pages-with-view-scripts)
107107
> documentation.
108108
109109
> ### Custom helpers

doc/book/quick-start.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Additionally, zend-mvc integrates with zend-view via a number of event listeners
3333
in the `Zend\Mvc\View` namespace.
3434

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

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

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

0 commit comments

Comments
 (0)