-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathModule.php
62 lines (54 loc) · 1.46 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
<?php
namespace JustLess;
use Zend\Loader;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;
/**
* @author Rick <[email protected]>
* @company Rick Kuipers Development
*/
class Module implements
ConfigProviderInterface,
AutoloaderProviderInterface
{
/**
* Return an array for passing to Zend\Loader\AutoloaderFactory.
*
* @return array
*/
public function getAutoloaderConfig()
{
return array(
Loader\AutoloaderFactory::STANDARD_AUTOLOADER => array(
Loader\StandardAutoloader::LOAD_NS => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
),
);
}
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function getServiceConfig()
{
return array(
'factories' => array(
'JustLess\Options\ModuleOptions' => function($sm) {
$config = $sm->get('Config');
return new \JustLess\Options\ModuleOptions($config['justless']);
}
),
);
}
public function getViewHelperConfig()
{
return array(
'factories' => array(
'less' => function($sm) {
return new \JustLess\View\Helper\Less($sm);
}
),
);
}
}