-
Notifications
You must be signed in to change notification settings - Fork 5
/
Module.php
94 lines (82 loc) · 2.73 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
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
/**
* AistAliceFixtures (http://mateuszsitek.com/projects/aist-alice-fixtures)
*
* @link http://github.com/ma-si/aist-alice-fixtures for the canonical source repository
* @copyright Copyright (c) 2006-2015 Aist Internet Technologies (http://aist.pl) All rights reserved.
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
*/
namespace AistAliceFixtures;
use Zend\EventManager\EventInterface;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\ModuleManager\Feature\InitProviderInterface;
use Zend\ModuleManager\ModuleManagerInterface;
/**
* AistAliceFixtures Module
*/
class Module implements ConfigProviderInterface, InitProviderInterface
{
/**
* {@inheritDoc}
*/
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__,
],
],
];
}
/**
* {@inheritDoc}
*/
public function getModuleDependencies()
{
return [
'DoctrineModule',
'DoctrineORMModule',
];
}
/**
* {@inheritDoc}
*/
public function init(ModuleManagerInterface $manager)
{
$events = $manager->getEventManager();
$events->getSharedManager()->attach('doctrine', 'loadCli.post', [$this, 'initializeConsole']);
}
/**
* Initializes the console with additional commands from the ORM, DBAL and (optionally) DBAL\Migrations
*
* @param \Zend\EventManager\EventInterface $event
*
* @return void
*/
public function initializeConsole(EventInterface $event)
{
/** @var \Symfony\Component\Console\Application $cli */
$cli = $event->getTarget();
/** @var \Zend\ServiceManager\ServiceLocatorInterface $serviceLocator */
$serviceLocator = $event->getParam('ServiceManager');
/** @var \AistAliceFixtures\Tools\Console\Helper\FixtureLoaderHelper $loader */
$loader = $serviceLocator->get('fixtures.loader');
/** @var \AistAliceFixtures\Tools\Console\Helper\FixturePersisterHelper $persister */
$persister = $serviceLocator->get('fixture.persister');
$commands = [
'aist.fixtures.load',
];
$cli->addCommands(array_map([$serviceLocator, 'get'], $commands));
$helperSet = $cli->getHelperSet();
$helperSet->set($loader, 'loader');
$helperSet->set($persister, 'persister');
}
}