diff --git a/doc/book/helpers/advanced-usage.md b/doc/book/helpers/advanced-usage.md index aea0721d..642b2033 100644 --- a/doc/book/helpers/advanced-usage.md +++ b/doc/book/helpers/advanced-usage.md @@ -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: diff --git a/doc/book/helpers/doctype.md b/doc/book/helpers/doctype.md index 3d260be1..922e4758 100644 --- a/doc/book/helpers/doctype.md +++ b/doc/book/helpers/doctype.md @@ -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. diff --git a/doc/book/helpers/flash-messenger.md b/doc/book/helpers/flash-messenger.md index acb85b50..7a2ef4cb 100644 --- a/doc/book/helpers/flash-messenger.md +++ b/doc/book/helpers/flash-messenger.md @@ -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 diff --git a/doc/book/helpers/intro.md b/doc/book/helpers/intro.md index 35ef7228..cf3df02f 100644 --- a/doc/book/helpers/intro.md +++ b/doc/book/helpers/intro.md @@ -85,25 +85,25 @@ for, and rendering, the various HTML `` 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 diff --git a/doc/book/quick-start.md b/doc/book/quick-start.md index d4a616ec..b7d99797 100644 --- a/doc/book/quick-start.md +++ b/doc/book/quick-start.md @@ -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 @@ -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. @@ -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).