-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathModule.php
81 lines (71 loc) · 2.13 KB
/
Module.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
namespace ZfDeals;
use Zend\ModuleManager\ModuleManager;
class Module
{
public function init(\Zend\ModuleManager\ModuleManager $moduleManager)
{
$layoutConfig = array(
'admin' => array(
'ZfDeals\Controller\ProductAddFormController',
'ZfDeals\Controller\DealAddFormController',
'ZfDeals\Controller\AdminController',
'ZfDeals\Controller\OrderController',
),
'site' => array(
'ZfDeals\Controller\IndexController',
'ZfDeals\Controller\CheckoutFormController',
)
);
foreach($layoutConfig as $layout => $controllers)
{
foreach($controllers as $controller)
{
$this->configureLayoutForController(
$moduleManager,
$controller,
"zf-deals/layout/$layout"
);
}
}
}
private function configureLayoutForController($moduleManager, $controller, $layout)
{
$sharedEvents = $moduleManager->getEventManager()->getSharedManager();
$sharedEvents->attach(
$controller,
'dispatch',
function ($e) use ($layout) {
$controller = $e->getTarget();
$controller->layout($layout);
},
100
);
}
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function getServiceConfig()
{
return include __DIR__ . '/config/services.config.php';
}
public function getControllerConfig()
{
return include __DIR__ . '/config/controllers.config.php';
}
public function getViewHelperConfig()
{
return include __DIR__ . '/config/viewhelper.config.php';
}
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
),
);
}
}