-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.php
65 lines (59 loc) · 2.07 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
<?php
namespace HtCustomerLogo;
use Zend\Mvc\MvcEvent;
use HtCustomerLogo\EventManager\LogoUploadListener;
class Module
{
public function onBootstrap(MvcEvent $e)
{
$application = $e->getApplication();
$eventManager = $application->getEventManager();
$serviceManager = $application->getServiceManager();
$eventManager->getSharedManager()->attachAggregate(new LogoUploadListener);
}
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function getAutoloaderConfig()
{
return [
'Zend\Loader\ClassMapAutoloader' => [
__DIR__ . '/autoload_classmap.php',
],
'Zend\Loader\StandardAutoloader' => [
'namespaces' => [
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
],
],
];
}
public function getServiceConfig()
{
return [
'invokables' => [
'HtCustomerLogo\Form\LogoForm' => 'HtCustomerLogo\Form\LogoForm',
],
'factories' => [
'HtCustomerLogo\ModuleOptions' => 'HtCustomerLogo\Factory\ModuleOptionsFactory',
'HtCustomerLogo\Service\SimpleLogoDirectoryProvider' => 'HtCustomerLogo\Factory\SimpleLogoDirectoryProviderFactory',
'HtCustomerLogo\Service\LogoPathProvider' => 'HtCustomerLogo\Factory\LogoPathProviderFactory',
'HtCustomerLogo\Service\LogoService' => 'HtCustomerLogo\Factory\LogoServiceFactory',
],
'aliases' => [
'HtCustomerLogo.LogoDirectoryProvider' => 'HtCustomerLogo\Service\SimpleLogoDirectoryProvider',
]
];
}
public function getViewHelperConfig()
{
return [
'factories' => [
'HtCustomerLogo\View\Helper\LogoUrl' => 'HtCustomerLogo\View\Helper\Factory\LogoUrlFactory',
],
'aliases' => [
'htCustomerLogo' => 'HtCustomerLogo\View\Helper\LogoUrl',
]
];
}
}