Caution
The documentation you are viewing is for an older version of this component.
Switch to the latest (v3) version.
Cookbook
How can I use zend-form view helpers?
If you've selected zend-view as your preferred template renderer, you'll likely want to use the various view helpers available in other components, such as:
- zend-form
- zend-i18n
- zend-navigation
By default, only the view helpers directly available in zend-view are available; how can you add the others?
To add the zend-form view helpers create a file config/autoload/zend-form.global.php
with the contents:
<?php
use Zend\Form\ConfigProvider;
$provider = new ConfigProvider();
return $provider();
and that will essentially do everything needed.
If you installed Expressive via the skeleton, the service
Zend\View\HelperPluginManager
is registered for you, and represents the helper
plugin manager injected into the PhpRenderer
instance. As such, you only need
to configure this. The question is: where?
You have three options:
- Replace the
HelperPluginManager
factory with your own; or - Add a delegator factory to or extend the
HelperPluginManager
service to inject the additional helper configuration; or - Add pipeline middleware that composes the
HelperPluginManager
and configures it.
Replacing the HelperPluginManager factory
The zend-view integration provides Zend\Expressive\ZendView\HelperPluginManagerFactory
,
and the Expressive skeleton registers it be default. The simplest solution for
adding other helpers is to replace it with your own. In your own factory, you
will also configure the plugin manager with the configuration from the
zend-form component (or whichever other components you wish to use).
namespace Your\Application;
use Interop\Container\ContainerInterface;
use Zend\ServiceManager\Config;
use Zend\View\HelperPluginManager;
class HelperPluginManagerFactory
{
public function __invoke(ContainerInterface $container)
{
$manager = new HelperPluginManager($container);
$config = $container->has('config') ? $container->get('config') : [];
$config = isset($config['view_helpers']) ? $config['view_helpers'] : [];
(new Config($config))->configureServiceManager($manager);
return $manager;
}
}
In your config/autoload/templates.global.php
file, change the line that reads:
Zend\View\HelperPluginManager::class => Zend\Expressive\ZendView\HelperPluginManagerFactory::class,
to instead read as:
Zend\View\HelperPluginManager::class => Your\Application\HelperPluginManagerFactory::class,
This approach will work for any of the various containers supported.
Delegator factories/service extension
Delegator factories and service extension operate on the same principle: they intercept after the original factory was called, and then operate on the generated instance, either modifying or replacing it. We'll demonstrate this for zend-servicemanager and Pimple; at the time of writing, we're unaware of a mechanism for doing so in Aura.Di.
zend-servicemanager
You'll first need to create a delegator factory:
namespace Your\Application;
use Interop\Container\ContainerInterface;
use Zend\ServiceManager\Config;
use Zend\ServiceManager\DelegatorFactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
class FormHelpersDelegatorFactory
{
/**
* zend-servicemanager v3 support
*/
public function __invoke(
ContainerInterface $container,
$name,
callable $callback,
array $options = null
) {
$helpers = $callback();
$config = $container->has('config') ? $container->get('config') : [];
$config = new Config($config['view_helpers']);
$config->configureServiceManager($helpers);
return $helpers;
}
/**
* zend-servicemanager v2 support
*/
public function createDelegatorWithName(
ServiceLocatorInterface $container,
$name,
$requestedName,
$callback
) {
return $this($container, $name, $callback);
}
}
The above creates an instance of Zend\ServiceManager\Config
, uses it to
configure the already created Zend\View\HelperPluginManager
instance, and then
returns the plugin manager instance.
From here, you'll add a delegators
configuration key in your
config/autoload/templates.global.php
file:
return [
'dependencies' => [
'delegators' => [
Zend\View\HelperPluginManager::class => [
Your\Application\FormHelpersDelegatorFactory::class,
],
],
/* ... */
],
'templates' => [
/* ... */
],
'view_helpers' => [
/* ... */
],
];
Note: delegator factories are keyed by the service they modify, and the value is an array of delegator factories, to allow multiple such factories to be in use.
Pimple
For Pimple, we don't currently support configuration of service extensions, so
you'll need to edit the main container configuration file,
config/container.php
. Place the following anywhere after the factories and
invokables are defined:
// The following assumes you've added the following import statements to
// the start of the file:
// use Zend\ServiceManager\Config as ServiceConfig;
// use Zend\View\HelperPluginManager;
$container[HelperPluginManager::class] = $container->extend(
HelperPluginManager::class,
function ($helpers, $container) {
$config = isset($container['config']) ? $container['config'] : [];
$config = new ServiceConfig($config['view_helpers']);
$config->configureServiceManager($helpers);
return $helpers;
}
);
Pipeline middleware
Another option is to use pipeline middleware. This approach will require that the middleware execute on every request, which introduces (very slight) performance overhead. However, it's a portable method that works regardless of the container implementation you choose.
First, define the middleware:
namespace Your\Application
use Zend\Form\View\HelperConfig as FormHelperConfig;
use Zend\View\HelperPluginManager;
class FormHelpersMiddleware
{
private $helpers;
public function __construct(HelperPluginManager $helpers)
{
$this->helpers = $helpers;
}
public function __invoke($request, $response, callable $next)
{
$config = new FormHelperConfig();
$config->configureServiceManager($this->helpers);
return $next($request, $response);
}
}
You'll also need a factory for the middleware, to ensure it receives the
HelperPluginManager
:
namespace Your\Application
use Zend\View\HelperPluginManager;
class FormHelpersMiddlewareFactory
{
public function __invoke($container)
{
return new FormHelpersMiddleware(
$container->get(HelperPluginManager::class)
);
}
}
Now, register these in the file
config/autoload/middleware-pipeline.global.php
:
return [
'dependencies' => [
'factories' => [
Your\Application\FormHelpersMiddleware::class => Your\Application\FormHelpersMiddlewareFactory::class
/* ... */
],
/* ... */
],
'middleware_pipeline' => [
['middleware' => Your\Application\FormHelpersMiddleware::class, 'priority' => 1000],
/* ... */
'routing' => [
'middleware' => [
Zend\Expressive\Container\ApplicationFactory::ROUTING_MIDDLEWARE,
Zend\Expressive\Helper\UrlHelperMiddleware::class,
Zend\Expressive\Container\ApplicationFactory::DISPATCH_MIDDLEWARE,
],
'priority' => 1,
],
/* ... */
],
];
At that point, you're all set!
Registering more helpers
What if you need to register helpers from multiple components?
You can do so using the same technique above. Better yet, do them all at once!
- If you chose to use delegator factories/service extension, do all helper configuration registrations for all components in the same factory.
- If you chose to use middleware, do all helper configuration registrations for all components in the same middleware.
Found a mistake or want to contribute to the documentation? Edit this page on GitHub!