-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathModule.php
More file actions
59 lines (48 loc) · 1.53 KB
/
Module.php
File metadata and controls
59 lines (48 loc) · 1.53 KB
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
<?php
namespace BorisZF2;
use Zend\Console\Adapter\AdapterInterface as ConsoleAdapterInterface;
use Zend\EventManager\EventInterface;
use Zend\Mvc\ModuleRouteListener;
use Zend\ModuleManager\Feature\ConsoleUsageProviderInterface;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
class Module implements ConsoleUsageProviderInterface, AutoloaderProviderInterface, ConfigProviderInterface
{
const NAME = 'Boris - Zend Framweork command line tool';
/**
* @var ServiceLocatorInterface
*/
protected $sm;
public function onBootstrap(EventInterface $e)
{
$this->sm = $e->getApplication()->getServiceManager();
}
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
),
);
}
public function getConsoleBanner(ConsoleAdapterInterface $console)
{
return self::NAME;
}
public function getConsoleUsage(ConsoleAdapterInterface $console){
$config = $this->sm->get('config');
if(!empty($config['Boris']) && !empty($config['Boris']['disable_usage'])){
return null; // usage information has been disabled
}
return array(
'basic information:'
);
}
}