Inject the plugin loader into Zend\Mvc\Controller\PluginBroker by default to simplify...
authorRob Allen <rob@akrabat.com>
Tue, 24 Jan 2012 17:06:58 +0000 (17:06 +0000)
committerRob Allen <rob@akrabat.com>
Tue, 24 Jan 2012 17:06:58 +0000 (17:06 +0000)
module/Application/config/module.config.php

index a8e8365..6561e26 100644 (file)
@@ -9,11 +9,22 @@ return array(
                 'error' => 'Application\Controller\ErrorController',
                 'view'  => 'Zend\View\PhpRenderer',
             ),
+
+            // Inject the plugin broker for controller plugins into
+            // the action controller for use by all controllers that
+            // extend it.
             'Zend\Mvc\Controller\ActionController' => array(
                 'parameters' => array(
                     'broker'       => 'Zend\Mvc\Controller\PluginBroker',
                 ),
             ),
+            'Zend\Mvc\Controller\PluginBroker' => array(
+                'parameters' => array(
+                    'loader' => 'Zend\Mvc\Controller\PluginLoader',
+                ),
+            ),
+
+            // Setup the PhpRenderer
             'Zend\View\PhpRenderer' => array(
                 'parameters' => array(
                     'resolver' => 'Zend\View\TemplatePathStack',