-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathselect-layout-based-on-controller.php
48 lines (41 loc) · 1.62 KB
/
select-layout-based-on-controller.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
namespace Application;
use Zend\Console\Adapter\AdapterInterface;
use Zend\ModuleManager\Feature\ConsoleUsageProviderInterface;
use Zend\ModuleManager\Feature\ServiceProviderInterface;
use Zend\Mvc\ModuleRouteListener;
use Zend\Mvc\MvcEvent;
use Zend\Mvc\Router\RouteMatch;
use Zend\Navigation\Page\Mvc;
use Zend\ServiceManager\ServiceLocatorInterface;
class Module implements ServiceProviderInterface, ConsoleUsageProviderInterface
{
/**
* @var ServiceLocatorInterface
*/
protected $sm;
public function onBootstrap(MvcEvent $e)
{
$eventManager = $e->getApplication()->getEventManager();
$moduleRouteListener = new ModuleRouteListener();
$moduleRouteListener->attach($eventManager);
$this->sm = $e->getApplication()->getServiceManager();
// start session
$config = $this->sm->get('config');
session_set_cookie_params($config['adbcloud']['sessionLifetime']);
session_start();
$eventManager->attach(MvcEvent::EVENT_ROUTE, array($this, 'selectLayoutBasedOnController'));
}
public function selectLayoutBasedOnController(MvcEvent $e)
{
// Get the current route match
$match = $e->getRouteMatch();
// Set layout to match the abbreviated controller name
// i.e. Application\Controller\Admin -> layout/admin
if ($match instanceof RouteMatch) {
$controllerName = $match->getParam('controller');
$layoutName = 'layout/' . strtolower(substr($controllerName, strrpos($controllerName,'\\') + 1 ));
$e->getViewModel()->setTemplate($layoutName);
}
}
}