I have a questiom regarding the Zend Framework 2:

I have library/System and library/Zend. the system is my custom library, which I want to configure de aplication (routes, modules, etc., and redirect user to correct module, controller and/or action).

I don't want to do this inside each application/modules/ModuleName/Module.php file. So, my library/System can do everything related to application configuration.

link|improve this question

Have you tried to access the router directly (Zend\Mvc\Application.getRouter())? – Fge Jan 1 at 13:00
Return a Zend\Mvc\Router\SimpleRouteStack object without controller/action/params passed by url info. – Gabriel Santos Jan 1 at 16:04
@Fge I've tried Zend\Mvc\PhpEnvironment\Request.getRequestUri(), but without success. – Gabriel Santos Jan 1 at 16:08
Some more code of your class and what you do might be helpful then – Fge Jan 1 at 17:22
@Fge It is the problem, I don't do much more then this code, because ZF2 need configuration files in every place, every module, etc. The question is, how can I catch the request, parse, and send to controller, independent of ZF2 Mvc or modular structure. – Gabriel Santos Jan 1 at 18:16
show 3 more comments
feedback

1 Answer

up vote 7 down vote accepted

As said in the comments above: register to the bootstrap-event and add new routes there:

<?php

namespace Application;

use Zend\Module\Manager,
    Zend\EventManager\StaticEventManager;

class Module
{
    public function init(Manager $moduleManager)
    {
        $events = StaticEventManager::getInstance();
        $events->attach('bootstrap', 'bootstrap', array($this, 'initCustom'), 100);
    }

    public function initCustom($e)
    {
        $app = $e->getParam('application');
        $r = \Zend\Mvc\Router\Http\Segment::factory(array(
                'route'    => '/test',
                'defaults' => array(
                    'controller' => 'test'
                )
            )
        );
        $app->getRouter()->addRoute('test',$r);
    }
}

$app = $e->getParam('application'); does return an instance of Zend\Mvc\Application. Have a look there to see which additional parts you can get there. The bootstrap event is fired before the actual dispatching does happen.

Note that the ZendFramework 1 routes are not always compatible to the ZendFramework 2 ones.

Update to comments

public function initCustom($e)
{
    $app = $e->getParam('application');
    // Init a new router object and add your own routes only
    $app->setRouter($newRouter);
}

Update to new question

<?php

namespace Application;

use Zend\Module\Manager,
    Zend\EventManager\StaticEventManager;

class Module
{
    public function init(Manager $moduleManager)
    {
        $events = StaticEventManager::getInstance();
        $events->attach('bootstrap', 'bootstrap', array($this, 'initCustom'), 100);
    }

    public function initCustom($e)
    {
        $zendApplication = $e->getParam('application');
        $customApplication = new System\Application();
        $customApplication->initRoutes($zendApplication->getRouter());
        // ... other init stuff of your custom application
    }
}

This only happens in one zf2 module (named Application which can be the only one as well). This doesn't fit your needs? You could:

  • extend a custom module autoloader
  • extend Zend\Mvc\Application for your own logic
  • make your code zf2-compatible
link|improve this answer
In this example, my module will be called when "mywebsite.com/test" are requested? – Gabriel Santos Jan 2 at 16:31
And if, inside my library/custom/application.php I do the same, but here atach the Module instance: $events->attach('bootstrap', 'bootstrap', array(INSTANCE OF MODULE, 'init'), 100);, this way, I can auto call the init method and define my module route. (Of course, do this with a little more code.) – Gabriel Santos Jan 2 at 16:33
One typo: public function init(Manager $moduleManager) and public function init($e) with same names. – Gabriel Santos Jan 2 at 16:35
Typo fixed. No this won't call your module. This is just an example how to add your routes without config-files. You probably want to add your own routes here instead. On a friendly advice: zf1 and zf2 work almost completly different – Fge Jan 2 at 17:35
1  
@Gabriel: updated answer – Fge Jan 7 at 10:17
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.