@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * @param array $colMap |
35 | 35 | * @return Form|string |
36 | 36 | */ |
37 | - public function __invoke(FormInterface $form = null, $colMap=null) |
|
37 | + public function __invoke(FormInterface $form = null, $colMap = null) |
|
38 | 38 | { |
39 | 39 | if (!$form) { |
40 | 40 | return $this; |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | return $this->render($form, $colMap); |
44 | 44 | } |
45 | 45 | |
46 | - public function render(FormInterface $form, $colMap=null, $buttonsSpan = null) |
|
46 | + public function render(FormInterface $form, $colMap = null, $buttonsSpan = null) |
|
47 | 47 | { |
48 | 48 | $headscript = $this->getView()->plugin('headscript'); |
49 | 49 | $basepath = $this->getView()->plugin('basepath'); |
@@ -60,14 +60,14 @@ discard block |
||
60 | 60 | $form->prepare(); |
61 | 61 | |
62 | 62 | if ($form instanceOf ViewPartialProviderInterface) { |
63 | - return $this->getView()->partial($form->getViewPartial(), [ 'element' => $form, 'colMap' => $colMap, 'buttonsSpan' => $buttonsSpan ]); |
|
63 | + return $this->getView()->partial($form->getViewPartial(), ['element' => $form, 'colMap' => $colMap, 'buttonsSpan' => $buttonsSpan]); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | $content = $this->renderElements($form, $colMap, $buttonsSpan); |
67 | 67 | |
68 | 68 | return $this->openTag($form) |
69 | 69 | . '<div class="row" style="padding: 0 15px;">' |
70 | - . $content . '</div>' . $this->closeTag(); |
|
70 | + . $content.'</div>'.$this->closeTag(); |
|
71 | 71 | |
72 | 72 | } |
73 | 73 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | $content = ''; |
79 | 79 | foreach ($buttons as $button) { |
80 | - $content.= $helper($button); |
|
80 | + $content .= $helper($button); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | return $content; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | public function renderElements($form, $colMap = null, $buttonsSpan = null) |
87 | 87 | { |
88 | 88 | if ($form instanceOf ViewPartialProviderInterface) { |
89 | - return $this->getView()->partial($form->getViewPartial(), [ 'element' => $form, 'colMap' => $colMap, 'buttonsSpan' => $buttonsSpan ]); |
|
89 | + return $this->getView()->partial($form->getViewPartial(), ['element' => $form, 'colMap' => $colMap, 'buttonsSpan' => $buttonsSpan]); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | if (null === $colMap) { |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | $formElement = $this->getView()->plugin('formElement'); |
97 | - $content = ''; $buttonsRendered = false; $i=0; |
|
97 | + $content = ''; $buttonsRendered = false; $i = 0; |
|
98 | 98 | foreach ($form as $element) { |
99 | 99 | |
100 | 100 | if (isset($colMap[$element->getName()])) { |
@@ -108,14 +108,14 @@ discard block |
||
108 | 108 | } |
109 | 109 | |
110 | 110 | if ($element->getName() == $form->getButtonElement()) { |
111 | - $content.='<div class="input-group col-md-' . $cols . '">' |
|
111 | + $content .= '<div class="input-group col-md-'.$cols.'">' |
|
112 | 112 | . $formElement($element) |
113 | 113 | . '<div class="input-group-btn search-form-buttons" style="width: 1px;">' |
114 | - . $this->renderButtons($form->getButtons()) . '</div>' |
|
114 | + . $this->renderButtons($form->getButtons()).'</div>' |
|
115 | 115 | . '</div>'; |
116 | 116 | $buttonsRendered = true; |
117 | 117 | } else { |
118 | - $content .= '<div class="input-group col-md-' . $cols . '">' |
|
118 | + $content .= '<div class="input-group col-md-'.$cols.'">' |
|
119 | 119 | . $formElement($element) |
120 | 120 | . '</div>'; |
121 | 121 | } |
@@ -127,8 +127,8 @@ discard block |
||
127 | 127 | if (null === $buttonsSpan) { |
128 | 128 | $buttonsSpan = $form->getOption('buttons_span') ?: 12; |
129 | 129 | } |
130 | - $content .= '<div class="input-group search-form-buttons col-md-' . $buttonsSpan . ' text-right">' |
|
131 | - . '<div class="btn-group">' . $this->renderButtons($form->getButtons()) .'</div></div>'; |
|
130 | + $content .= '<div class="input-group search-form-buttons col-md-'.$buttonsSpan.' text-right">' |
|
131 | + . '<div class="btn-group">'.$this->renderButtons($form->getButtons()).'</div></div>'; |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | return $content; |
@@ -1,20 +1,20 @@ |
||
1 | 1 | <?php |
2 | 2 | // Generated by ZF2's ./bin/classmap_generator.php |
3 | 3 | return array( |
4 | - 'Geo\Controller\IndexController' => __DIR__ . '/Geo/Controller/IndexController.php', |
|
5 | - 'Geo\Controller\Plugin\Geo' => __DIR__ . '/Geo/Controller/Plugin/Geo.php', |
|
6 | - 'Geo\Controller\Plugin\Photon' => __DIR__ . '/Geo/Controller/Plugin/Photon.php', |
|
7 | - 'Geo\Entity\Geometry\Point' => __DIR__ . '/Geo/Entity/Geometry/Point.php', |
|
8 | - 'Geo\Factory\Controller\IndexControllerFactory' => __DIR__ . '/Geo/Factory/Controller/IndexControllerFactory.php', |
|
9 | - 'Geo\Factory\Form\GeoSelectFactory' => __DIR__ . '/Geo/Factory/Form/GeoSelectFactory.php', |
|
10 | - 'Geo\Factory\Service\ClientFactory' => __DIR__ . '/Geo/Factory/Service/ClientFactory.php', |
|
11 | - 'Geo\Form\GeoSelect' => __DIR__ . '/Geo/Form/GeoSelect.php', |
|
12 | - 'Geo\Form\GeoSelectHydratorStrategy' => __DIR__ . '/Geo/Form/GeoSelectHydratorStrategy.php', |
|
13 | - 'Geo\Form\GeoSelectSimple' => __DIR__ . '/Geo/Form/GeoSelectSimple.php', |
|
14 | - 'Geo\Form\GeoText' => __DIR__ . '/Geo/Form/GeoText.php', |
|
15 | - 'Geo\Form\GeoText\Converter' => __DIR__ . '/Geo/Form/GeoText/Converter.php', |
|
16 | - 'Geo\Options\ModuleOptions' => __DIR__ . '/Geo/Options/ModuleOptions.php', |
|
17 | - 'Geo\Service\AbstractClient' => __DIR__ . '/Geo/Service/AbstractClient.php', |
|
18 | - 'Geo\Service\Geo' => __DIR__ . '/Geo/Service/Geo.php', |
|
19 | - 'Geo\Service\Photon' => __DIR__ . '/Geo/Service/Photon.php', |
|
4 | + 'Geo\Controller\IndexController' => __DIR__.'/Geo/Controller/IndexController.php', |
|
5 | + 'Geo\Controller\Plugin\Geo' => __DIR__.'/Geo/Controller/Plugin/Geo.php', |
|
6 | + 'Geo\Controller\Plugin\Photon' => __DIR__.'/Geo/Controller/Plugin/Photon.php', |
|
7 | + 'Geo\Entity\Geometry\Point' => __DIR__.'/Geo/Entity/Geometry/Point.php', |
|
8 | + 'Geo\Factory\Controller\IndexControllerFactory' => __DIR__.'/Geo/Factory/Controller/IndexControllerFactory.php', |
|
9 | + 'Geo\Factory\Form\GeoSelectFactory' => __DIR__.'/Geo/Factory/Form/GeoSelectFactory.php', |
|
10 | + 'Geo\Factory\Service\ClientFactory' => __DIR__.'/Geo/Factory/Service/ClientFactory.php', |
|
11 | + 'Geo\Form\GeoSelect' => __DIR__.'/Geo/Form/GeoSelect.php', |
|
12 | + 'Geo\Form\GeoSelectHydratorStrategy' => __DIR__.'/Geo/Form/GeoSelectHydratorStrategy.php', |
|
13 | + 'Geo\Form\GeoSelectSimple' => __DIR__.'/Geo/Form/GeoSelectSimple.php', |
|
14 | + 'Geo\Form\GeoText' => __DIR__.'/Geo/Form/GeoText.php', |
|
15 | + 'Geo\Form\GeoText\Converter' => __DIR__.'/Geo/Form/GeoText/Converter.php', |
|
16 | + 'Geo\Options\ModuleOptions' => __DIR__.'/Geo/Options/ModuleOptions.php', |
|
17 | + 'Geo\Service\AbstractClient' => __DIR__.'/Geo/Service/AbstractClient.php', |
|
18 | + 'Geo\Service\Geo' => __DIR__.'/Geo/Service/Geo.php', |
|
19 | + 'Geo\Service\Photon' => __DIR__.'/Geo/Service/Photon.php', |
|
20 | 20 | ); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function getConfig() |
27 | 27 | { |
28 | - return include __DIR__ . '/config/module.config.php'; |
|
28 | + return include __DIR__.'/config/module.config.php'; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -37,11 +37,11 @@ discard block |
||
37 | 37 | { |
38 | 38 | return array( |
39 | 39 | 'Zend\Loader\ClassMapAutoloader' => [ |
40 | - __DIR__ . '/src/autoload_classmap.php' |
|
40 | + __DIR__.'/src/autoload_classmap.php' |
|
41 | 41 | ], |
42 | 42 | 'Zend\Loader\StandardAutoloader' => array( |
43 | 43 | 'namespaces' => array( |
44 | - __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__, |
|
44 | + __NAMESPACE__ => __DIR__.'/src/'.__NAMESPACE__, |
|
45 | 45 | ), |
46 | 46 | ), |
47 | 47 | ); |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | // Generated by ZF2's ./bin/classmap_generator.php |
3 | 3 | return array( |
4 | - 'Install\Controller\Index' => __DIR__ . '/Controller/Index.php', |
|
5 | - 'Install\Controller\Plugin\Prerequisites' => __DIR__ . '/Controller/Plugin/Prerequisites.php', |
|
6 | - 'Install\Controller\Plugin\UserCreator' => __DIR__ . '/Controller/Plugin/UserCreator.php', |
|
7 | - 'Install\Controller\Plugin\YawikConfigCreator' => __DIR__ . '/Controller/Plugin/YawikConfigCreator.php', |
|
8 | - 'Install\Factory\Controller\Plugin\UserCreatorFactory' => __DIR__ . '/Factory/Controller/Plugin/UserCreatorFactory.php', |
|
9 | - 'Install\Factory\Controller\Plugin\YawikConfigCreatorFactory' => __DIR__ . '/Factory/Controller/Plugin/YawikConfigCreatorFactory.php', |
|
10 | - 'Install\Filter\DbNameExtractor' => __DIR__ . '/Filter/DbNameExtractor.php', |
|
11 | - 'Install\Form\Installation' => __DIR__ . '/Form/Installation.php', |
|
12 | - 'Install\Listener\LanguageSetter' => __DIR__ . '/Listener/LanguageSetter.php', |
|
13 | - 'Install\Validator\MongoDbConnection' => __DIR__ . '/Validator/MongoDbConnection.php', |
|
14 | - 'Install\Validator\MongoDbConnectionString' => __DIR__ . '/Validator/MongoDbConnectionString.php', |
|
4 | + 'Install\Controller\Index' => __DIR__.'/Controller/Index.php', |
|
5 | + 'Install\Controller\Plugin\Prerequisites' => __DIR__.'/Controller/Plugin/Prerequisites.php', |
|
6 | + 'Install\Controller\Plugin\UserCreator' => __DIR__.'/Controller/Plugin/UserCreator.php', |
|
7 | + 'Install\Controller\Plugin\YawikConfigCreator' => __DIR__.'/Controller/Plugin/YawikConfigCreator.php', |
|
8 | + 'Install\Factory\Controller\Plugin\UserCreatorFactory' => __DIR__.'/Factory/Controller/Plugin/UserCreatorFactory.php', |
|
9 | + 'Install\Factory\Controller\Plugin\YawikConfigCreatorFactory' => __DIR__.'/Factory/Controller/Plugin/YawikConfigCreatorFactory.php', |
|
10 | + 'Install\Filter\DbNameExtractor' => __DIR__.'/Filter/DbNameExtractor.php', |
|
11 | + 'Install\Form\Installation' => __DIR__.'/Form/Installation.php', |
|
12 | + 'Install\Listener\LanguageSetter' => __DIR__.'/Listener/LanguageSetter.php', |
|
13 | + 'Install\Validator\MongoDbConnection' => __DIR__.'/Validator/MongoDbConnection.php', |
|
14 | + 'Install\Validator\MongoDbConnectionString' => __DIR__.'/Validator/MongoDbConnectionString.php', |
|
15 | 15 | ); |
@@ -24,23 +24,23 @@ |
||
24 | 24 | |
25 | 25 | public function getConfig() |
26 | 26 | { |
27 | - return include __DIR__ . '/config/module.config.php'; |
|
27 | + return include __DIR__.'/config/module.config.php'; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | public function getAutoloaderConfig() |
31 | 31 | { |
32 | 32 | return array( |
33 | 33 | 'Zend\Loader\ClassMapAutoloader' => [ |
34 | - __DIR__ . '/src/autoload_classmap.php', |
|
34 | + __DIR__.'/src/autoload_classmap.php', |
|
35 | 35 | [ |
36 | 36 | // We need this filter for initial user creation. |
37 | - 'Auth\Entity\Filter\CredentialFilter' => __DIR__ . '/../Auth/src/Auth/Entity/Filter/CredentialFilter.php', |
|
37 | + 'Auth\Entity\Filter\CredentialFilter' => __DIR__.'/../Auth/src/Auth/Entity/Filter/CredentialFilter.php', |
|
38 | 38 | ], |
39 | 39 | ], |
40 | 40 | 'Zend\Loader\StandardAutoloader' => array( |
41 | 41 | 'namespaces' => array( |
42 | - __NAMESPACE__ => __DIR__ . '/src' /* . __NAMESPACE__*/, |
|
43 | - __NAMESPACE__ . 'Test' => __DIR__ . '/test/' . __NAMESPACE__ . 'Test', |
|
42 | + __NAMESPACE__ => __DIR__.'/src' /* . __NAMESPACE__*/, |
|
43 | + __NAMESPACE__.'Test' => __DIR__.'/test/'.__NAMESPACE__.'Test', |
|
44 | 44 | ), |
45 | 45 | ), |
46 | 46 | ); |
@@ -1,171 +1,171 @@ |
||
1 | 1 | <?php |
2 | 2 | // Generated by ZF2's ./bin/classmap_generator.php |
3 | 3 | return array( |
4 | - 'Jobs\Acl\CreateAssertion' => __DIR__ . '/Jobs/Acl/CreateAssertion.php', |
|
5 | - 'Jobs\Acl\WriteAssertion' => __DIR__ . '/Jobs/Acl/WriteAssertion.php', |
|
6 | - 'Jobs\Auth\Dependency\ListListener' => __DIR__ . '/Jobs/Auth/Dependency/ListListener.php', |
|
7 | - 'Jobs\Controller\AdminCategoriesController' => __DIR__ . '/Jobs/Controller/AdminCategoriesController.php', |
|
8 | - 'Jobs\Controller\AdminController' => __DIR__ . '/Jobs/Controller/AdminController.php', |
|
9 | - 'Jobs\Controller\ApiJobListByChannelController' => __DIR__ . '/Jobs/Controller/ApiJobListByChannelController.php', |
|
10 | - 'Jobs\Controller\ApiJobListByOrganizationController' => __DIR__ . '/Jobs/Controller/ApiJobListByOrganizationController.php', |
|
11 | - 'Jobs\Controller\ApprovalController' => __DIR__ . '/Jobs/Controller/ApprovalController.php', |
|
12 | - 'Jobs\Controller\AssignUserController' => __DIR__ . '/Jobs/Controller/AssignUserController.php', |
|
13 | - 'Jobs\Controller\ConsoleController' => __DIR__ . '/Jobs/Controller/ConsoleController.php', |
|
14 | - 'Jobs\Controller\ImportController' => __DIR__ . '/Jobs/Controller/ImportController.php', |
|
15 | - 'Jobs\Controller\IndexController' => __DIR__ . '/Jobs/Controller/IndexController.php', |
|
16 | - 'Jobs\Controller\JobboardController' => __DIR__ . '/Jobs/Controller/JobboardController.php', |
|
17 | - 'Jobs\Controller\ManageController' => __DIR__ . '/Jobs/Controller/ManageController.php', |
|
18 | - 'Jobs\Controller\Plugin\InitializeJob' => __DIR__ . '/Jobs/Controller/Plugin/InitializeJob.php', |
|
19 | - 'Jobs\Controller\TemplateController' => __DIR__ . '/Jobs/Controller/TemplateController.php', |
|
20 | - 'Jobs\Entity\AtsMode' => __DIR__ . '/Jobs/Entity/AtsMode.php', |
|
21 | - 'Jobs\Entity\AtsModeInterface' => __DIR__ . '/Jobs/Entity/AtsModeInterface.php', |
|
22 | - 'Jobs\Entity\Category' => __DIR__ . '/Jobs/Entity/Category.php', |
|
23 | - 'Jobs\Entity\Classifications' => __DIR__ . '/Jobs/Entity/Classifications.php', |
|
24 | - 'Jobs\Entity\Coordinates' => __DIR__ . '/Jobs/Entity/Coordinates.php', |
|
25 | - 'Jobs\Entity\CoordinatesInterface' => __DIR__ . '/Jobs/Entity/CoordinatesInterface.php', |
|
26 | - 'Jobs\Entity\History' => __DIR__ . '/Jobs/Entity/History.php', |
|
27 | - 'Jobs\Entity\HistoryInterface' => __DIR__ . '/Jobs/Entity/HistoryInterface.php', |
|
28 | - 'Jobs\Entity\Hydrator\JobsEntityHydratorFactory' => __DIR__ . '/Jobs/Entity/Hydrator/JobsEntityHydratorFactory.php', |
|
29 | - 'Jobs\Entity\Hydrator\JsonJobsEntityHydratorFactory' => __DIR__ . '/Jobs/Entity/Hydrator/JsonJobsEntityHydratorFactory.php', |
|
30 | - 'Jobs\Entity\Hydrator\TemplateValuesHydrator' => __DIR__ . '/Jobs/Entity/Hydrator/TemplateValuesHydrator.php', |
|
31 | - 'Jobs\Entity\Job' => __DIR__ . '/Jobs/Entity/Job.php', |
|
32 | - 'Jobs\Entity\JobInterface' => __DIR__ . '/Jobs/Entity/JobInterface.php', |
|
33 | - 'Jobs\Entity\JobSnapshot' => __DIR__ . '/Jobs/Entity/JobSnapshot.php', |
|
34 | - 'Jobs\Entity\JobSnapshotMeta' => __DIR__ . '/Jobs/Entity/JobSnapshotMeta.php', |
|
35 | - 'Jobs\Entity\Location' => __DIR__ . '/Jobs/Entity/Location.php', |
|
36 | - 'Jobs\Entity\Publisher' => __DIR__ . '/Jobs/Entity/Publisher.php', |
|
37 | - 'Jobs\Entity\Status' => __DIR__ . '/Jobs/Entity/Status.php', |
|
38 | - 'Jobs\Entity\StatusInterface' => __DIR__ . '/Jobs/Entity/StatusInterface.php', |
|
39 | - 'Jobs\Entity\TemplateValues' => __DIR__ . '/Jobs/Entity/TemplateValues.php', |
|
40 | - 'Jobs\Entity\TemplateValuesInterface' => __DIR__ . '/Jobs/Entity/TemplateValuesInterface.php', |
|
41 | - 'Jobs\Factory\Auth\Dependency\ListListenerFactory' => __DIR__ . '/Jobs/Factory/Auth/Dependency/ListListenerFactory.php', |
|
42 | - 'Jobs\Factory\Controller\ApiJobListByOrganizationControllerFactory' => __DIR__ . '/Jobs/Factory/Controller/ApiJobListByOrganizationControllerFactory.php', |
|
43 | - 'Jobs\Factory\Controller\ApprovalControllerFactory' => __DIR__ . '/Jobs/Factory/Controller/ApprovalControllerFactory.php', |
|
44 | - 'Jobs\Factory\Controller\AssignUserControllerFactory' => __DIR__ . '/Jobs/Factory/Controller/AssignUserControllerFactory.php', |
|
45 | - 'Jobs\Factory\Controller\IndexControllerFactory' => __DIR__ . '/Jobs/Factory/Controller/IndexControllerFactory.php', |
|
46 | - 'Jobs\Factory\Controller\JobboardControllerFactory' => __DIR__ . '/Jobs/Factory/Controller/JobboardControllerFactory.php', |
|
47 | - 'Jobs\Factory\Controller\ManageControllerFactory' => __DIR__ . '/Jobs/Factory/Controller/ManageControllerFactory.php', |
|
48 | - 'Jobs\Factory\Controller\Plugin\InitializeJobFactory' => __DIR__ . '/Jobs/Factory/Controller/Plugin/InitializeJobFactory.php', |
|
49 | - 'Jobs\Factory\Controller\TemplateControllerFactory' => __DIR__ . '/Jobs/Factory/Controller/TemplateControllerFactory.php', |
|
50 | - 'Jobs\Factory\Filter\ChannelPricesFactory' => __DIR__ . '/Jobs/Factory/Filter/ChannelPricesFactory.php', |
|
51 | - 'Jobs\Factory\Filter\ViewModelTemplateFilterFactory' => __DIR__ . '/Jobs/Factory/Filter/ViewModelTemplateFilterFactory.php', |
|
52 | - 'Jobs\Factory\Form\ActiveOrganizationSelectFactory' => __DIR__ . '/Jobs/Factory/Form/ActiveOrganizationSelectFactory.php', |
|
53 | - 'Jobs\Factory\Form\BaseFieldsetFactory' => __DIR__ . '/Jobs/Factory/Form/BaseFieldsetFactory.php', |
|
54 | - 'Jobs\Factory\Form\CompanyNameFieldsetFactory' => __DIR__ . '/Jobs/Factory/Form/CompanyNameFieldsetFactory.php', |
|
55 | - 'Jobs\Factory\Form\HiringOrganizationSelectFactory' => __DIR__ . '/Jobs/Factory/Form/HiringOrganizationSelectFactory.php', |
|
56 | - 'Jobs\Factory\Form\Hydrator\OrganizationNameHydratorFactory' => __DIR__ . '/Jobs/Factory/Form/Hydrator/OrganizationNameHydratorFactory.php', |
|
57 | - 'Jobs\Factory\Form\ImportFactory' => __DIR__ . '/Jobs/Factory/Form/ImportFactory.php', |
|
58 | - 'Jobs\Factory\Form\InputFilter\AtsModeFactory' => __DIR__ . '/Jobs/Factory/Form/InputFilter/AtsModeFactory.php', |
|
59 | - 'Jobs\Factory\Form\JobFactory' => __DIR__ . '/Jobs/Factory/Form/JobFactory.php', |
|
60 | - 'Jobs\Factory\Form\JobboardSearchFactory' => __DIR__ . '/Jobs/Factory/Form/JobboardSearchFactory.php', |
|
61 | - 'Jobs\Factory\Form\ListFilterLocationFieldsetFactory' => __DIR__ . '/Jobs/Factory/Form/ListFilterLocationFieldsetFactory.php', |
|
62 | - 'Jobs\Factory\Form\MultipostingMultiCheckboxFactory' => __DIR__ . '/Jobs/Factory/Form/MultipostingMultiCheckboxFactory.php', |
|
63 | - 'Jobs\Factory\Form\MultipostingSelectFactory' => __DIR__ . '/Jobs/Factory/Form/MultipostingSelectFactory.php', |
|
64 | - 'Jobs\Factory\JobEventManagerFactory' => __DIR__ . '/Jobs/Factory/JobEventManagerFactory.php', |
|
65 | - 'Jobs\Factory\Listener\AdminWidgetProviderFactory' => __DIR__ . '/Jobs/Factory/Listener/AdminWidgetProviderFactory.php', |
|
66 | - 'Jobs\Factory\Listener\MailSenderFactory' => __DIR__ . '/Jobs/Factory/Listener/MailSenderFactory.php', |
|
67 | - 'Jobs\Factory\Model\ApiJobDehydratorFactory' => __DIR__ . '/Jobs/Factory/Model/ApiJobDehydratorFactory.php', |
|
68 | - 'Jobs\Factory\ModuleOptionsFactory' => __DIR__ . '/Jobs/Factory/ModuleOptionsFactory.php', |
|
69 | - 'Jobs\Factory\Options\ChannelOptionsFactory' => __DIR__ . '/Jobs/Factory/Options/ChannelOptionsFactory.php', |
|
70 | - 'Jobs\Factory\Options\ProviderOptionsFactory' => __DIR__ . '/Jobs/Factory/Options/ProviderOptionsFactory.php', |
|
71 | - 'Jobs\Factory\Repository\DefaultCategoriesBuilderFactory' => __DIR__ . '/Jobs/Factory/Repository/DefaultCategoriesBuilderFactory.php', |
|
72 | - 'Jobs\Factory\Repository\Filter\PaginationAdminQueryFactory' => __DIR__ . '/Jobs/Factory/Repository/Filter/PaginationAdminQueryFactory.php', |
|
73 | - 'Jobs\Factory\Repository\Filter\PaginationQueryFactory' => __DIR__ . '/Jobs/Factory/Repository/Filter/PaginationQueryFactory.php', |
|
74 | - 'Jobs\Factory\Service\JobsPublisherFactory' => __DIR__ . '/Jobs/Factory/Service/JobsPublisherFactory.php', |
|
75 | - 'Jobs\Factory\View\Helper\AdminEditLinkFactory' => __DIR__ . '/Jobs/Factory/View/Helper/AdminEditLinkFactory.php', |
|
76 | - 'Jobs\Factory\View\Helper\ApplyUrlFactory' => __DIR__ . '/Jobs/Factory/View/Helper/ApplyUrlFactory.php', |
|
77 | - 'Jobs\Factory\View\Helper\JobUrlFactory' => __DIR__ . '/Jobs/Factory/View/Helper/JobUrlFactory.php', |
|
78 | - 'Jobs\Filter\ChannelPrices' => __DIR__ . '/Jobs/Filter/ChannelPrices.php', |
|
79 | - 'Jobs\Filter\ViewModelTemplateFilterAbstract' => __DIR__ . '/Jobs/Filter/ViewModelTemplateFilterAbstract.php', |
|
80 | - 'Jobs\Filter\ViewModelTemplateFilterForm' => __DIR__ . '/Jobs/Filter/ViewModelTemplateFilterForm.php', |
|
81 | - 'Jobs\Filter\ViewModelTemplateFilterJob' => __DIR__ . '/Jobs/Filter/ViewModelTemplateFilterJob.php', |
|
82 | - 'Jobs\Form\AdminJobEdit' => __DIR__ . '/Jobs/Form/AdminJobEdit.php', |
|
83 | - 'Jobs\Form\AdminSearchForm' => __DIR__ . '/Jobs/Form/AdminSearchForm.php', |
|
84 | - 'Jobs\Form\AdminSearchFormElementsFieldset' => __DIR__ . '/Jobs/Form/AdminSearchFormElementsFieldset.php', |
|
85 | - 'Jobs\Form\ApplyIdentifierElement' => __DIR__ . '/Jobs/Form/ApplyIdentifierElement.php', |
|
86 | - 'Jobs\Form\AtsMode' => __DIR__ . '/Jobs/Form/AtsMode.php', |
|
87 | - 'Jobs\Form\AtsModeFieldset' => __DIR__ . '/Jobs/Form/AtsModeFieldset.php', |
|
88 | - 'Jobs\Form\Base' => __DIR__ . '/Jobs/Form/Base.php', |
|
89 | - 'Jobs\Form\BaseFieldset' => __DIR__ . '/Jobs/Form/BaseFieldset.php', |
|
90 | - 'Jobs\Form\CategoriesContainer' => __DIR__ . '/Jobs/Form/CategoriesContainer.php', |
|
91 | - 'Jobs\Form\ClassificationsFieldset' => __DIR__ . '/Jobs/Form/ClassificationsFieldset.php', |
|
92 | - 'Jobs\Form\ClassificationsForm' => __DIR__ . '/Jobs/Form/ClassificationsForm.php', |
|
93 | - 'Jobs\Form\CompanyName' => __DIR__ . '/Jobs/Form/CompanyName.php', |
|
94 | - 'Jobs\Form\CompanyNameElement' => __DIR__ . '/Jobs/Form/CompanyNameElement.php', |
|
95 | - 'Jobs\Form\CompanyNameFieldset' => __DIR__ . '/Jobs/Form/CompanyNameFieldset.php', |
|
96 | - 'Jobs\Form\CustomerNote' => __DIR__ . '/Jobs/Form/CustomerNote.php', |
|
97 | - 'Jobs\Form\CustomerNoteFieldset' => __DIR__ . '/Jobs/Form/CustomerNoteFieldset.php', |
|
98 | - 'Jobs\Form\Element\StatusSelect' => __DIR__ . '/Jobs/Form/Element/StatusSelect.php', |
|
99 | - 'Jobs\Form\HiringOrganizationSelect' => __DIR__ . '/Jobs/Form/HiringOrganizationSelect.php', |
|
100 | - 'Jobs\Form\Hydrator\JobDescriptionHydrator' => __DIR__ . '/Jobs/Form/Hydrator/JobDescriptionHydrator.php', |
|
101 | - 'Jobs\Form\Hydrator\OrganizationNameHydrator' => __DIR__ . '/Jobs/Form/Hydrator/OrganizationNameHydrator.php', |
|
102 | - 'Jobs\Form\Hydrator\PreviewLinkHydrator' => __DIR__ . '/Jobs/Form/Hydrator/PreviewLinkHydrator.php', |
|
103 | - 'Jobs\Form\Hydrator\Strategy\JobDescriptionBenefitsStrategy' => __DIR__ . '/Jobs/Form/Hydrator/Strategy/JobDescriptionBenefitsStrategy.php', |
|
104 | - 'Jobs\Form\Hydrator\Strategy\JobDescriptionDescriptionStrategy' => __DIR__ . '/Jobs/Form/Hydrator/Strategy/JobDescriptionDescriptionStrategy.php', |
|
105 | - 'Jobs\Form\Hydrator\Strategy\JobDescriptionQualificationsStrategy' => __DIR__ . '/Jobs/Form/Hydrator/Strategy/JobDescriptionQualificationsStrategy.php', |
|
106 | - 'Jobs\Form\Hydrator\Strategy\JobDescriptionRequirementsStrategy' => __DIR__ . '/Jobs/Form/Hydrator/Strategy/JobDescriptionRequirementsStrategy.php', |
|
107 | - 'Jobs\Form\Hydrator\Strategy\JobDescriptionTitleStrategy' => __DIR__ . '/Jobs/Form/Hydrator/Strategy/JobDescriptionTitleStrategy.php', |
|
108 | - 'Jobs\Form\Hydrator\TemplateLabelHydrator' => __DIR__ . '/Jobs/Form/Hydrator/TemplateLabelHydrator.php', |
|
109 | - 'Jobs\Form\Import' => __DIR__ . '/Jobs/Form/Import.php', |
|
110 | - 'Jobs\Form\ImportFieldset' => __DIR__ . '/Jobs/Form/ImportFieldset.php', |
|
111 | - 'Jobs\Form\InputFilter\AtsMode' => __DIR__ . '/Jobs/Form/InputFilter/AtsMode.php', |
|
112 | - 'Jobs\Form\InputFilter\CompanyName' => __DIR__ . '/Jobs/Form/InputFilter/CompanyName.php', |
|
113 | - 'Jobs\Form\InputFilter\JobLocationEdit' => __DIR__ . '/Jobs/Form/InputFilter/JobLocationEdit.php', |
|
114 | - 'Jobs\Form\InputFilter\JobLocationNew' => __DIR__ . '/Jobs/Form/InputFilter/JobLocationNew.php', |
|
115 | - 'Jobs\Form\Job' => __DIR__ . '/Jobs/Form/Job.php', |
|
116 | - 'Jobs\Form\JobDescription' => __DIR__ . '/Jobs/Form/JobDescription.php', |
|
117 | - 'Jobs\Form\JobDescriptionBenefits' => __DIR__ . '/Jobs/Form/JobDescriptionBenefits.php', |
|
118 | - 'Jobs\Form\JobDescriptionDescription' => __DIR__ . '/Jobs/Form/JobDescriptionDescription.php', |
|
119 | - 'Jobs\Form\JobDescriptionFieldset' => __DIR__ . '/Jobs/Form/JobDescriptionFieldset.php', |
|
120 | - 'Jobs\Form\JobDescriptionQualifications' => __DIR__ . '/Jobs/Form/JobDescriptionQualifications.php', |
|
121 | - 'Jobs\Form\JobDescriptionRequirements' => __DIR__ . '/Jobs/Form/JobDescriptionRequirements.php', |
|
122 | - 'Jobs\Form\JobDescriptionTemplate' => __DIR__ . '/Jobs/Form/JobDescriptionTemplate.php', |
|
123 | - 'Jobs\Form\JobDescriptionTitle' => __DIR__ . '/Jobs/Form/JobDescriptionTitle.php', |
|
124 | - 'Jobs\Form\JobboardSearch' => __DIR__ . '/Jobs/Form/JobboardSearch.php', |
|
125 | - 'Jobs\Form\ListFilter' => __DIR__ . '/Jobs/Form/ListFilter.php', |
|
126 | - 'Jobs\Form\ListFilterAdmin' => __DIR__ . '/Jobs/Form/ListFilterAdmin.php', |
|
127 | - 'Jobs\Form\ListFilterAdminFieldset' => __DIR__ . '/Jobs/Form/ListFilterAdminFieldset.php', |
|
128 | - 'Jobs\Form\ListFilterBaseFieldset' => __DIR__ . '/Jobs/Form/ListFilterBaseFieldset.php', |
|
129 | - 'Jobs\Form\ListFilterLocation' => __DIR__ . '/Jobs/Form/ListFilterLocation.php', |
|
130 | - 'Jobs\Form\ListFilterLocationFieldset' => __DIR__ . '/Jobs/Form/ListFilterLocationFieldset.php', |
|
131 | - 'Jobs\Form\ListFilterPersonal' => __DIR__ . '/Jobs/Form/ListFilterPersonal.php', |
|
132 | - 'Jobs\Form\ListFilterPersonalFieldset' => __DIR__ . '/Jobs/Form/ListFilterPersonalFieldset.php', |
|
133 | - 'Jobs\Form\Multipost' => __DIR__ . '/Jobs/Form/Multipost.php', |
|
134 | - 'Jobs\Form\MultipostButtonFieldset' => __DIR__ . '/Jobs/Form/MultipostButtonFieldset.php', |
|
135 | - 'Jobs\Form\MultipostFieldset' => __DIR__ . '/Jobs/Form/MultipostFieldset.php', |
|
136 | - 'Jobs\Form\MultipostingSelect' => __DIR__ . '/Jobs/Form/MultipostingSelect.php', |
|
137 | - 'Jobs\Form\OrganizationSelect' => __DIR__ . '/Jobs/Form/OrganizationSelect.php', |
|
138 | - 'Jobs\Form\Preview' => __DIR__ . '/Jobs/Form/Preview.php', |
|
139 | - 'Jobs\Form\PreviewFieldset' => __DIR__ . '/Jobs/Form/PreviewFieldset.php', |
|
140 | - 'Jobs\Form\PreviewLink' => __DIR__ . '/Jobs/Form/PreviewLink.php', |
|
141 | - 'Jobs\Form\TemplateLabelBenefits' => __DIR__ . '/Jobs/Form/TemplateLabelBenefits.php', |
|
142 | - 'Jobs\Form\TemplateLabelQualifications' => __DIR__ . '/Jobs/Form/TemplateLabelQualifications.php', |
|
143 | - 'Jobs\Form\TemplateLabelRequirements' => __DIR__ . '/Jobs/Form/TemplateLabelRequirements.php', |
|
144 | - 'Jobs\Form\Validator\UniqueApplyId' => __DIR__ . '/Jobs/Form/Validator/UniqueApplyId.php', |
|
145 | - 'Jobs\Form\Validator\UniqueApplyIdFactory' => __DIR__ . '/Jobs/Form/Validator/UniqueApplyIdFactory.php', |
|
146 | - 'Jobs\Form\View\Helper\PreviewLink' => __DIR__ . '/Jobs/Form/View/Helper/PreviewLink.php', |
|
147 | - 'Jobs\Listener\AdminWidgetProvider' => __DIR__ . '/Jobs/Listener/AdminWidgetProvider.php', |
|
148 | - 'Jobs\Listener\Events\JobEvent' => __DIR__ . '/Jobs/Listener/Events/JobEvent.php', |
|
149 | - 'Jobs\Listener\MailSender' => __DIR__ . '/Jobs/Listener/MailSender.php', |
|
150 | - 'Jobs\Listener\Publisher' => __DIR__ . '/Jobs/Listener/Publisher.php', |
|
151 | - 'Jobs\Listener\Response\JobResponse' => __DIR__ . '/Jobs/Listener/Response/JobResponse.php', |
|
152 | - 'Jobs\Model\ApiJobDehydrator' => __DIR__ . '/Jobs/Model/ApiJobDehydrator.php', |
|
153 | - 'Jobs\Options\BaseFieldsetOptions' => __DIR__ . '/Jobs/Options/BaseFieldsetOptions.php', |
|
154 | - 'Jobs\Options\ChannelOptions' => __DIR__ . '/Jobs/Options/ChannelOptions.php', |
|
155 | - 'Jobs\Options\JobboardSearchOptions' => __DIR__ . '/Jobs/Options/JobboardSearchOptions.php', |
|
156 | - 'Jobs\Options\ModuleOptions' => __DIR__ . '/Jobs/Options/ModuleOptions.php', |
|
157 | - 'Jobs\Options\ProviderOptions' => __DIR__ . '/Jobs/Options/ProviderOptions.php', |
|
158 | - 'Jobs\Paginator\JobsAdminPaginatorFactory' => __DIR__ . '/Jobs/Paginator/JobsAdminPaginatorFactory.php', |
|
159 | - 'Jobs\Paginator\JobsPaginatorFactory' => __DIR__ . '/Jobs/Paginator/JobsPaginatorFactory.php', |
|
160 | - 'Jobs\Repository\Categories' => __DIR__ . '/Jobs/Repository/Categories.php', |
|
161 | - 'Jobs\Repository\DefaultCategoriesBuilder' => __DIR__ . '/Jobs/Repository/DefaultCategoriesBuilder.php', |
|
162 | - 'Jobs\Repository\Event\UpdatePermissionsSubscriber' => __DIR__ . '/Jobs/Repository/Event/UpdatePermissionsSubscriber.php', |
|
163 | - 'Jobs\Repository\Filter\PaginationAdminQuery' => __DIR__ . '/Jobs/Repository/Filter/PaginationAdminQuery.php', |
|
164 | - 'Jobs\Repository\Filter\PaginationQuery' => __DIR__ . '/Jobs/Repository/Filter/PaginationQuery.php', |
|
165 | - 'Jobs\Repository\Job' => __DIR__ . '/Jobs/Repository/Job.php', |
|
166 | - 'Jobs\Repository\JobSnapshotMeta' => __DIR__ . '/Jobs/Repository/JobSnapshotMeta.php', |
|
167 | - 'Jobs\View\Helper\AdminEditLink' => __DIR__ . '/Jobs/View/Helper/AdminEditLink.php', |
|
168 | - 'Jobs\View\Helper\ApplyButtons' => __DIR__ . '/Jobs/View/Helper/ApplyButtons.php', |
|
169 | - 'Jobs\View\Helper\ApplyUrl' => __DIR__ . '/Jobs/View/Helper/ApplyUrl.php', |
|
170 | - 'Jobs\View\Helper\JobUrl' => __DIR__ . '/Jobs/View/Helper/JobUrl.php', |
|
4 | + 'Jobs\Acl\CreateAssertion' => __DIR__.'/Jobs/Acl/CreateAssertion.php', |
|
5 | + 'Jobs\Acl\WriteAssertion' => __DIR__.'/Jobs/Acl/WriteAssertion.php', |
|
6 | + 'Jobs\Auth\Dependency\ListListener' => __DIR__.'/Jobs/Auth/Dependency/ListListener.php', |
|
7 | + 'Jobs\Controller\AdminCategoriesController' => __DIR__.'/Jobs/Controller/AdminCategoriesController.php', |
|
8 | + 'Jobs\Controller\AdminController' => __DIR__.'/Jobs/Controller/AdminController.php', |
|
9 | + 'Jobs\Controller\ApiJobListByChannelController' => __DIR__.'/Jobs/Controller/ApiJobListByChannelController.php', |
|
10 | + 'Jobs\Controller\ApiJobListByOrganizationController' => __DIR__.'/Jobs/Controller/ApiJobListByOrganizationController.php', |
|
11 | + 'Jobs\Controller\ApprovalController' => __DIR__.'/Jobs/Controller/ApprovalController.php', |
|
12 | + 'Jobs\Controller\AssignUserController' => __DIR__.'/Jobs/Controller/AssignUserController.php', |
|
13 | + 'Jobs\Controller\ConsoleController' => __DIR__.'/Jobs/Controller/ConsoleController.php', |
|
14 | + 'Jobs\Controller\ImportController' => __DIR__.'/Jobs/Controller/ImportController.php', |
|
15 | + 'Jobs\Controller\IndexController' => __DIR__.'/Jobs/Controller/IndexController.php', |
|
16 | + 'Jobs\Controller\JobboardController' => __DIR__.'/Jobs/Controller/JobboardController.php', |
|
17 | + 'Jobs\Controller\ManageController' => __DIR__.'/Jobs/Controller/ManageController.php', |
|
18 | + 'Jobs\Controller\Plugin\InitializeJob' => __DIR__.'/Jobs/Controller/Plugin/InitializeJob.php', |
|
19 | + 'Jobs\Controller\TemplateController' => __DIR__.'/Jobs/Controller/TemplateController.php', |
|
20 | + 'Jobs\Entity\AtsMode' => __DIR__.'/Jobs/Entity/AtsMode.php', |
|
21 | + 'Jobs\Entity\AtsModeInterface' => __DIR__.'/Jobs/Entity/AtsModeInterface.php', |
|
22 | + 'Jobs\Entity\Category' => __DIR__.'/Jobs/Entity/Category.php', |
|
23 | + 'Jobs\Entity\Classifications' => __DIR__.'/Jobs/Entity/Classifications.php', |
|
24 | + 'Jobs\Entity\Coordinates' => __DIR__.'/Jobs/Entity/Coordinates.php', |
|
25 | + 'Jobs\Entity\CoordinatesInterface' => __DIR__.'/Jobs/Entity/CoordinatesInterface.php', |
|
26 | + 'Jobs\Entity\History' => __DIR__.'/Jobs/Entity/History.php', |
|
27 | + 'Jobs\Entity\HistoryInterface' => __DIR__.'/Jobs/Entity/HistoryInterface.php', |
|
28 | + 'Jobs\Entity\Hydrator\JobsEntityHydratorFactory' => __DIR__.'/Jobs/Entity/Hydrator/JobsEntityHydratorFactory.php', |
|
29 | + 'Jobs\Entity\Hydrator\JsonJobsEntityHydratorFactory' => __DIR__.'/Jobs/Entity/Hydrator/JsonJobsEntityHydratorFactory.php', |
|
30 | + 'Jobs\Entity\Hydrator\TemplateValuesHydrator' => __DIR__.'/Jobs/Entity/Hydrator/TemplateValuesHydrator.php', |
|
31 | + 'Jobs\Entity\Job' => __DIR__.'/Jobs/Entity/Job.php', |
|
32 | + 'Jobs\Entity\JobInterface' => __DIR__.'/Jobs/Entity/JobInterface.php', |
|
33 | + 'Jobs\Entity\JobSnapshot' => __DIR__.'/Jobs/Entity/JobSnapshot.php', |
|
34 | + 'Jobs\Entity\JobSnapshotMeta' => __DIR__.'/Jobs/Entity/JobSnapshotMeta.php', |
|
35 | + 'Jobs\Entity\Location' => __DIR__.'/Jobs/Entity/Location.php', |
|
36 | + 'Jobs\Entity\Publisher' => __DIR__.'/Jobs/Entity/Publisher.php', |
|
37 | + 'Jobs\Entity\Status' => __DIR__.'/Jobs/Entity/Status.php', |
|
38 | + 'Jobs\Entity\StatusInterface' => __DIR__.'/Jobs/Entity/StatusInterface.php', |
|
39 | + 'Jobs\Entity\TemplateValues' => __DIR__.'/Jobs/Entity/TemplateValues.php', |
|
40 | + 'Jobs\Entity\TemplateValuesInterface' => __DIR__.'/Jobs/Entity/TemplateValuesInterface.php', |
|
41 | + 'Jobs\Factory\Auth\Dependency\ListListenerFactory' => __DIR__.'/Jobs/Factory/Auth/Dependency/ListListenerFactory.php', |
|
42 | + 'Jobs\Factory\Controller\ApiJobListByOrganizationControllerFactory' => __DIR__.'/Jobs/Factory/Controller/ApiJobListByOrganizationControllerFactory.php', |
|
43 | + 'Jobs\Factory\Controller\ApprovalControllerFactory' => __DIR__.'/Jobs/Factory/Controller/ApprovalControllerFactory.php', |
|
44 | + 'Jobs\Factory\Controller\AssignUserControllerFactory' => __DIR__.'/Jobs/Factory/Controller/AssignUserControllerFactory.php', |
|
45 | + 'Jobs\Factory\Controller\IndexControllerFactory' => __DIR__.'/Jobs/Factory/Controller/IndexControllerFactory.php', |
|
46 | + 'Jobs\Factory\Controller\JobboardControllerFactory' => __DIR__.'/Jobs/Factory/Controller/JobboardControllerFactory.php', |
|
47 | + 'Jobs\Factory\Controller\ManageControllerFactory' => __DIR__.'/Jobs/Factory/Controller/ManageControllerFactory.php', |
|
48 | + 'Jobs\Factory\Controller\Plugin\InitializeJobFactory' => __DIR__.'/Jobs/Factory/Controller/Plugin/InitializeJobFactory.php', |
|
49 | + 'Jobs\Factory\Controller\TemplateControllerFactory' => __DIR__.'/Jobs/Factory/Controller/TemplateControllerFactory.php', |
|
50 | + 'Jobs\Factory\Filter\ChannelPricesFactory' => __DIR__.'/Jobs/Factory/Filter/ChannelPricesFactory.php', |
|
51 | + 'Jobs\Factory\Filter\ViewModelTemplateFilterFactory' => __DIR__.'/Jobs/Factory/Filter/ViewModelTemplateFilterFactory.php', |
|
52 | + 'Jobs\Factory\Form\ActiveOrganizationSelectFactory' => __DIR__.'/Jobs/Factory/Form/ActiveOrganizationSelectFactory.php', |
|
53 | + 'Jobs\Factory\Form\BaseFieldsetFactory' => __DIR__.'/Jobs/Factory/Form/BaseFieldsetFactory.php', |
|
54 | + 'Jobs\Factory\Form\CompanyNameFieldsetFactory' => __DIR__.'/Jobs/Factory/Form/CompanyNameFieldsetFactory.php', |
|
55 | + 'Jobs\Factory\Form\HiringOrganizationSelectFactory' => __DIR__.'/Jobs/Factory/Form/HiringOrganizationSelectFactory.php', |
|
56 | + 'Jobs\Factory\Form\Hydrator\OrganizationNameHydratorFactory' => __DIR__.'/Jobs/Factory/Form/Hydrator/OrganizationNameHydratorFactory.php', |
|
57 | + 'Jobs\Factory\Form\ImportFactory' => __DIR__.'/Jobs/Factory/Form/ImportFactory.php', |
|
58 | + 'Jobs\Factory\Form\InputFilter\AtsModeFactory' => __DIR__.'/Jobs/Factory/Form/InputFilter/AtsModeFactory.php', |
|
59 | + 'Jobs\Factory\Form\JobFactory' => __DIR__.'/Jobs/Factory/Form/JobFactory.php', |
|
60 | + 'Jobs\Factory\Form\JobboardSearchFactory' => __DIR__.'/Jobs/Factory/Form/JobboardSearchFactory.php', |
|
61 | + 'Jobs\Factory\Form\ListFilterLocationFieldsetFactory' => __DIR__.'/Jobs/Factory/Form/ListFilterLocationFieldsetFactory.php', |
|
62 | + 'Jobs\Factory\Form\MultipostingMultiCheckboxFactory' => __DIR__.'/Jobs/Factory/Form/MultipostingMultiCheckboxFactory.php', |
|
63 | + 'Jobs\Factory\Form\MultipostingSelectFactory' => __DIR__.'/Jobs/Factory/Form/MultipostingSelectFactory.php', |
|
64 | + 'Jobs\Factory\JobEventManagerFactory' => __DIR__.'/Jobs/Factory/JobEventManagerFactory.php', |
|
65 | + 'Jobs\Factory\Listener\AdminWidgetProviderFactory' => __DIR__.'/Jobs/Factory/Listener/AdminWidgetProviderFactory.php', |
|
66 | + 'Jobs\Factory\Listener\MailSenderFactory' => __DIR__.'/Jobs/Factory/Listener/MailSenderFactory.php', |
|
67 | + 'Jobs\Factory\Model\ApiJobDehydratorFactory' => __DIR__.'/Jobs/Factory/Model/ApiJobDehydratorFactory.php', |
|
68 | + 'Jobs\Factory\ModuleOptionsFactory' => __DIR__.'/Jobs/Factory/ModuleOptionsFactory.php', |
|
69 | + 'Jobs\Factory\Options\ChannelOptionsFactory' => __DIR__.'/Jobs/Factory/Options/ChannelOptionsFactory.php', |
|
70 | + 'Jobs\Factory\Options\ProviderOptionsFactory' => __DIR__.'/Jobs/Factory/Options/ProviderOptionsFactory.php', |
|
71 | + 'Jobs\Factory\Repository\DefaultCategoriesBuilderFactory' => __DIR__.'/Jobs/Factory/Repository/DefaultCategoriesBuilderFactory.php', |
|
72 | + 'Jobs\Factory\Repository\Filter\PaginationAdminQueryFactory' => __DIR__.'/Jobs/Factory/Repository/Filter/PaginationAdminQueryFactory.php', |
|
73 | + 'Jobs\Factory\Repository\Filter\PaginationQueryFactory' => __DIR__.'/Jobs/Factory/Repository/Filter/PaginationQueryFactory.php', |
|
74 | + 'Jobs\Factory\Service\JobsPublisherFactory' => __DIR__.'/Jobs/Factory/Service/JobsPublisherFactory.php', |
|
75 | + 'Jobs\Factory\View\Helper\AdminEditLinkFactory' => __DIR__.'/Jobs/Factory/View/Helper/AdminEditLinkFactory.php', |
|
76 | + 'Jobs\Factory\View\Helper\ApplyUrlFactory' => __DIR__.'/Jobs/Factory/View/Helper/ApplyUrlFactory.php', |
|
77 | + 'Jobs\Factory\View\Helper\JobUrlFactory' => __DIR__.'/Jobs/Factory/View/Helper/JobUrlFactory.php', |
|
78 | + 'Jobs\Filter\ChannelPrices' => __DIR__.'/Jobs/Filter/ChannelPrices.php', |
|
79 | + 'Jobs\Filter\ViewModelTemplateFilterAbstract' => __DIR__.'/Jobs/Filter/ViewModelTemplateFilterAbstract.php', |
|
80 | + 'Jobs\Filter\ViewModelTemplateFilterForm' => __DIR__.'/Jobs/Filter/ViewModelTemplateFilterForm.php', |
|
81 | + 'Jobs\Filter\ViewModelTemplateFilterJob' => __DIR__.'/Jobs/Filter/ViewModelTemplateFilterJob.php', |
|
82 | + 'Jobs\Form\AdminJobEdit' => __DIR__.'/Jobs/Form/AdminJobEdit.php', |
|
83 | + 'Jobs\Form\AdminSearchForm' => __DIR__.'/Jobs/Form/AdminSearchForm.php', |
|
84 | + 'Jobs\Form\AdminSearchFormElementsFieldset' => __DIR__.'/Jobs/Form/AdminSearchFormElementsFieldset.php', |
|
85 | + 'Jobs\Form\ApplyIdentifierElement' => __DIR__.'/Jobs/Form/ApplyIdentifierElement.php', |
|
86 | + 'Jobs\Form\AtsMode' => __DIR__.'/Jobs/Form/AtsMode.php', |
|
87 | + 'Jobs\Form\AtsModeFieldset' => __DIR__.'/Jobs/Form/AtsModeFieldset.php', |
|
88 | + 'Jobs\Form\Base' => __DIR__.'/Jobs/Form/Base.php', |
|
89 | + 'Jobs\Form\BaseFieldset' => __DIR__.'/Jobs/Form/BaseFieldset.php', |
|
90 | + 'Jobs\Form\CategoriesContainer' => __DIR__.'/Jobs/Form/CategoriesContainer.php', |
|
91 | + 'Jobs\Form\ClassificationsFieldset' => __DIR__.'/Jobs/Form/ClassificationsFieldset.php', |
|
92 | + 'Jobs\Form\ClassificationsForm' => __DIR__.'/Jobs/Form/ClassificationsForm.php', |
|
93 | + 'Jobs\Form\CompanyName' => __DIR__.'/Jobs/Form/CompanyName.php', |
|
94 | + 'Jobs\Form\CompanyNameElement' => __DIR__.'/Jobs/Form/CompanyNameElement.php', |
|
95 | + 'Jobs\Form\CompanyNameFieldset' => __DIR__.'/Jobs/Form/CompanyNameFieldset.php', |
|
96 | + 'Jobs\Form\CustomerNote' => __DIR__.'/Jobs/Form/CustomerNote.php', |
|
97 | + 'Jobs\Form\CustomerNoteFieldset' => __DIR__.'/Jobs/Form/CustomerNoteFieldset.php', |
|
98 | + 'Jobs\Form\Element\StatusSelect' => __DIR__.'/Jobs/Form/Element/StatusSelect.php', |
|
99 | + 'Jobs\Form\HiringOrganizationSelect' => __DIR__.'/Jobs/Form/HiringOrganizationSelect.php', |
|
100 | + 'Jobs\Form\Hydrator\JobDescriptionHydrator' => __DIR__.'/Jobs/Form/Hydrator/JobDescriptionHydrator.php', |
|
101 | + 'Jobs\Form\Hydrator\OrganizationNameHydrator' => __DIR__.'/Jobs/Form/Hydrator/OrganizationNameHydrator.php', |
|
102 | + 'Jobs\Form\Hydrator\PreviewLinkHydrator' => __DIR__.'/Jobs/Form/Hydrator/PreviewLinkHydrator.php', |
|
103 | + 'Jobs\Form\Hydrator\Strategy\JobDescriptionBenefitsStrategy' => __DIR__.'/Jobs/Form/Hydrator/Strategy/JobDescriptionBenefitsStrategy.php', |
|
104 | + 'Jobs\Form\Hydrator\Strategy\JobDescriptionDescriptionStrategy' => __DIR__.'/Jobs/Form/Hydrator/Strategy/JobDescriptionDescriptionStrategy.php', |
|
105 | + 'Jobs\Form\Hydrator\Strategy\JobDescriptionQualificationsStrategy' => __DIR__.'/Jobs/Form/Hydrator/Strategy/JobDescriptionQualificationsStrategy.php', |
|
106 | + 'Jobs\Form\Hydrator\Strategy\JobDescriptionRequirementsStrategy' => __DIR__.'/Jobs/Form/Hydrator/Strategy/JobDescriptionRequirementsStrategy.php', |
|
107 | + 'Jobs\Form\Hydrator\Strategy\JobDescriptionTitleStrategy' => __DIR__.'/Jobs/Form/Hydrator/Strategy/JobDescriptionTitleStrategy.php', |
|
108 | + 'Jobs\Form\Hydrator\TemplateLabelHydrator' => __DIR__.'/Jobs/Form/Hydrator/TemplateLabelHydrator.php', |
|
109 | + 'Jobs\Form\Import' => __DIR__.'/Jobs/Form/Import.php', |
|
110 | + 'Jobs\Form\ImportFieldset' => __DIR__.'/Jobs/Form/ImportFieldset.php', |
|
111 | + 'Jobs\Form\InputFilter\AtsMode' => __DIR__.'/Jobs/Form/InputFilter/AtsMode.php', |
|
112 | + 'Jobs\Form\InputFilter\CompanyName' => __DIR__.'/Jobs/Form/InputFilter/CompanyName.php', |
|
113 | + 'Jobs\Form\InputFilter\JobLocationEdit' => __DIR__.'/Jobs/Form/InputFilter/JobLocationEdit.php', |
|
114 | + 'Jobs\Form\InputFilter\JobLocationNew' => __DIR__.'/Jobs/Form/InputFilter/JobLocationNew.php', |
|
115 | + 'Jobs\Form\Job' => __DIR__.'/Jobs/Form/Job.php', |
|
116 | + 'Jobs\Form\JobDescription' => __DIR__.'/Jobs/Form/JobDescription.php', |
|
117 | + 'Jobs\Form\JobDescriptionBenefits' => __DIR__.'/Jobs/Form/JobDescriptionBenefits.php', |
|
118 | + 'Jobs\Form\JobDescriptionDescription' => __DIR__.'/Jobs/Form/JobDescriptionDescription.php', |
|
119 | + 'Jobs\Form\JobDescriptionFieldset' => __DIR__.'/Jobs/Form/JobDescriptionFieldset.php', |
|
120 | + 'Jobs\Form\JobDescriptionQualifications' => __DIR__.'/Jobs/Form/JobDescriptionQualifications.php', |
|
121 | + 'Jobs\Form\JobDescriptionRequirements' => __DIR__.'/Jobs/Form/JobDescriptionRequirements.php', |
|
122 | + 'Jobs\Form\JobDescriptionTemplate' => __DIR__.'/Jobs/Form/JobDescriptionTemplate.php', |
|
123 | + 'Jobs\Form\JobDescriptionTitle' => __DIR__.'/Jobs/Form/JobDescriptionTitle.php', |
|
124 | + 'Jobs\Form\JobboardSearch' => __DIR__.'/Jobs/Form/JobboardSearch.php', |
|
125 | + 'Jobs\Form\ListFilter' => __DIR__.'/Jobs/Form/ListFilter.php', |
|
126 | + 'Jobs\Form\ListFilterAdmin' => __DIR__.'/Jobs/Form/ListFilterAdmin.php', |
|
127 | + 'Jobs\Form\ListFilterAdminFieldset' => __DIR__.'/Jobs/Form/ListFilterAdminFieldset.php', |
|
128 | + 'Jobs\Form\ListFilterBaseFieldset' => __DIR__.'/Jobs/Form/ListFilterBaseFieldset.php', |
|
129 | + 'Jobs\Form\ListFilterLocation' => __DIR__.'/Jobs/Form/ListFilterLocation.php', |
|
130 | + 'Jobs\Form\ListFilterLocationFieldset' => __DIR__.'/Jobs/Form/ListFilterLocationFieldset.php', |
|
131 | + 'Jobs\Form\ListFilterPersonal' => __DIR__.'/Jobs/Form/ListFilterPersonal.php', |
|
132 | + 'Jobs\Form\ListFilterPersonalFieldset' => __DIR__.'/Jobs/Form/ListFilterPersonalFieldset.php', |
|
133 | + 'Jobs\Form\Multipost' => __DIR__.'/Jobs/Form/Multipost.php', |
|
134 | + 'Jobs\Form\MultipostButtonFieldset' => __DIR__.'/Jobs/Form/MultipostButtonFieldset.php', |
|
135 | + 'Jobs\Form\MultipostFieldset' => __DIR__.'/Jobs/Form/MultipostFieldset.php', |
|
136 | + 'Jobs\Form\MultipostingSelect' => __DIR__.'/Jobs/Form/MultipostingSelect.php', |
|
137 | + 'Jobs\Form\OrganizationSelect' => __DIR__.'/Jobs/Form/OrganizationSelect.php', |
|
138 | + 'Jobs\Form\Preview' => __DIR__.'/Jobs/Form/Preview.php', |
|
139 | + 'Jobs\Form\PreviewFieldset' => __DIR__.'/Jobs/Form/PreviewFieldset.php', |
|
140 | + 'Jobs\Form\PreviewLink' => __DIR__.'/Jobs/Form/PreviewLink.php', |
|
141 | + 'Jobs\Form\TemplateLabelBenefits' => __DIR__.'/Jobs/Form/TemplateLabelBenefits.php', |
|
142 | + 'Jobs\Form\TemplateLabelQualifications' => __DIR__.'/Jobs/Form/TemplateLabelQualifications.php', |
|
143 | + 'Jobs\Form\TemplateLabelRequirements' => __DIR__.'/Jobs/Form/TemplateLabelRequirements.php', |
|
144 | + 'Jobs\Form\Validator\UniqueApplyId' => __DIR__.'/Jobs/Form/Validator/UniqueApplyId.php', |
|
145 | + 'Jobs\Form\Validator\UniqueApplyIdFactory' => __DIR__.'/Jobs/Form/Validator/UniqueApplyIdFactory.php', |
|
146 | + 'Jobs\Form\View\Helper\PreviewLink' => __DIR__.'/Jobs/Form/View/Helper/PreviewLink.php', |
|
147 | + 'Jobs\Listener\AdminWidgetProvider' => __DIR__.'/Jobs/Listener/AdminWidgetProvider.php', |
|
148 | + 'Jobs\Listener\Events\JobEvent' => __DIR__.'/Jobs/Listener/Events/JobEvent.php', |
|
149 | + 'Jobs\Listener\MailSender' => __DIR__.'/Jobs/Listener/MailSender.php', |
|
150 | + 'Jobs\Listener\Publisher' => __DIR__.'/Jobs/Listener/Publisher.php', |
|
151 | + 'Jobs\Listener\Response\JobResponse' => __DIR__.'/Jobs/Listener/Response/JobResponse.php', |
|
152 | + 'Jobs\Model\ApiJobDehydrator' => __DIR__.'/Jobs/Model/ApiJobDehydrator.php', |
|
153 | + 'Jobs\Options\BaseFieldsetOptions' => __DIR__.'/Jobs/Options/BaseFieldsetOptions.php', |
|
154 | + 'Jobs\Options\ChannelOptions' => __DIR__.'/Jobs/Options/ChannelOptions.php', |
|
155 | + 'Jobs\Options\JobboardSearchOptions' => __DIR__.'/Jobs/Options/JobboardSearchOptions.php', |
|
156 | + 'Jobs\Options\ModuleOptions' => __DIR__.'/Jobs/Options/ModuleOptions.php', |
|
157 | + 'Jobs\Options\ProviderOptions' => __DIR__.'/Jobs/Options/ProviderOptions.php', |
|
158 | + 'Jobs\Paginator\JobsAdminPaginatorFactory' => __DIR__.'/Jobs/Paginator/JobsAdminPaginatorFactory.php', |
|
159 | + 'Jobs\Paginator\JobsPaginatorFactory' => __DIR__.'/Jobs/Paginator/JobsPaginatorFactory.php', |
|
160 | + 'Jobs\Repository\Categories' => __DIR__.'/Jobs/Repository/Categories.php', |
|
161 | + 'Jobs\Repository\DefaultCategoriesBuilder' => __DIR__.'/Jobs/Repository/DefaultCategoriesBuilder.php', |
|
162 | + 'Jobs\Repository\Event\UpdatePermissionsSubscriber' => __DIR__.'/Jobs/Repository/Event/UpdatePermissionsSubscriber.php', |
|
163 | + 'Jobs\Repository\Filter\PaginationAdminQuery' => __DIR__.'/Jobs/Repository/Filter/PaginationAdminQuery.php', |
|
164 | + 'Jobs\Repository\Filter\PaginationQuery' => __DIR__.'/Jobs/Repository/Filter/PaginationQuery.php', |
|
165 | + 'Jobs\Repository\Job' => __DIR__.'/Jobs/Repository/Job.php', |
|
166 | + 'Jobs\Repository\JobSnapshotMeta' => __DIR__.'/Jobs/Repository/JobSnapshotMeta.php', |
|
167 | + 'Jobs\View\Helper\AdminEditLink' => __DIR__.'/Jobs/View/Helper/AdminEditLink.php', |
|
168 | + 'Jobs\View\Helper\ApplyButtons' => __DIR__.'/Jobs/View/Helper/ApplyButtons.php', |
|
169 | + 'Jobs\View\Helper\ApplyUrl' => __DIR__.'/Jobs/View/Helper/ApplyUrl.php', |
|
170 | + 'Jobs\View\Helper\JobUrl' => __DIR__.'/Jobs/View/Helper/JobUrl.php', |
|
171 | 171 | ); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function getConfig() |
40 | 40 | { |
41 | - return ModuleConfigLoader::load(__DIR__ . '/config'); |
|
41 | + return ModuleConfigLoader::load(__DIR__.'/config'); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -50,12 +50,12 @@ discard block |
||
50 | 50 | { |
51 | 51 | return array( |
52 | 52 | 'Zend\Loader\ClassMapAutoloader' => [ |
53 | - __DIR__ . '/src/autoload_classmap.php' |
|
53 | + __DIR__.'/src/autoload_classmap.php' |
|
54 | 54 | ], |
55 | 55 | 'Zend\Loader\StandardAutoloader' => array( |
56 | 56 | 'namespaces' => array( |
57 | - __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__, |
|
58 | - __NAMESPACE__ . 'Test' => __DIR__ . '/test/' . __NAMESPACE__ . 'Test', |
|
57 | + __NAMESPACE__ => __DIR__.'/src/'.__NAMESPACE__, |
|
58 | + __NAMESPACE__.'Test' => __DIR__.'/test/'.__NAMESPACE__.'Test', |
|
59 | 59 | ), |
60 | 60 | ), |
61 | 61 | ); |
@@ -1,77 +1,77 @@ |
||
1 | 1 | <?php |
2 | 2 | // Generated by ZF2's ./bin/classmap_generator.php |
3 | 3 | return array( |
4 | - 'Applications\Acl\ApplicationAccessAssertion' => __DIR__ . '/Applications/Acl/ApplicationAccessAssertion.php', |
|
5 | - 'Applications\Auth\Dependency\ListListener' => __DIR__ . '/Applications/Auth/Dependency/ListListener.php', |
|
6 | - 'Applications\Controller\ApplyController' => __DIR__ . '/Applications/Controller/ApplyController.php', |
|
7 | - 'Applications\Controller\CommentController' => __DIR__ . '/Applications/Controller/CommentController.php', |
|
8 | - 'Applications\Controller\ConsoleController' => __DIR__ . '/Applications/Controller/ConsoleController.php', |
|
9 | - 'Applications\Controller\IndexController' => __DIR__ . '/Applications/Controller/IndexController.php', |
|
10 | - 'Applications\Controller\ManageController' => __DIR__ . '/Applications/Controller/ManageController.php', |
|
11 | - 'Applications\Controller\MultimanageController' => __DIR__ . '/Applications/Controller/MultimanageController.php', |
|
12 | - 'Applications\Controller\Plugin\StatusChanger' => __DIR__ . '/Applications/Controller/Plugin/StatusChanger.php', |
|
13 | - 'Applications\Entity\Application' => __DIR__ . '/Applications/Entity/Application.php', |
|
14 | - 'Applications\Entity\ApplicationInterface' => __DIR__ . '/Applications/Entity/ApplicationInterface.php', |
|
15 | - 'Applications\Entity\Attachment' => __DIR__ . '/Applications/Entity/Attachment.php', |
|
16 | - 'Applications\Entity\Attributes' => __DIR__ . '/Applications/Entity/Attributes.php', |
|
17 | - 'Applications\Entity\Comment' => __DIR__ . '/Applications/Entity/Comment.php', |
|
18 | - 'Applications\Entity\CommentInterface' => __DIR__ . '/Applications/Entity/CommentInterface.php', |
|
19 | - 'Applications\Entity\Contact' => __DIR__ . '/Applications/Entity/Contact.php', |
|
20 | - 'Applications\Entity\Cv' => __DIR__ . '/Applications/Entity/Cv.php', |
|
21 | - 'Applications\Entity\Facts' => __DIR__ . '/Applications/Entity/Facts.php', |
|
22 | - 'Applications\Entity\FactsInterface' => __DIR__ . '/Applications/Entity/FactsInterface.php', |
|
23 | - 'Applications\Entity\History' => __DIR__ . '/Applications/Entity/History.php', |
|
24 | - 'Applications\Entity\HistoryInterface' => __DIR__ . '/Applications/Entity/HistoryInterface.php', |
|
25 | - 'Applications\Entity\InternalReferences' => __DIR__ . '/Applications/Entity/InternalReferences.php', |
|
26 | - 'Applications\Entity\MailHistory' => __DIR__ . '/Applications/Entity/MailHistory.php', |
|
27 | - 'Applications\Entity\MailHistoryInterface' => __DIR__ . '/Applications/Entity/MailHistoryInterface.php', |
|
28 | - 'Applications\Entity\Rating' => __DIR__ . '/Applications/Entity/Rating.php', |
|
29 | - 'Applications\Entity\RatingInterface' => __DIR__ . '/Applications/Entity/RatingInterface.php', |
|
30 | - 'Applications\Entity\Settings' => __DIR__ . '/Applications/Entity/Settings.php', |
|
31 | - 'Applications\Entity\SettingsInterface' => __DIR__ . '/Applications/Entity/SettingsInterface.php', |
|
32 | - 'Applications\Entity\Status' => __DIR__ . '/Applications/Entity/Status.php', |
|
33 | - 'Applications\Entity\StatusInterface' => __DIR__ . '/Applications/Entity/StatusInterface.php', |
|
34 | - 'Applications\Entity\Subscriber' => __DIR__ . '/Applications/Entity/Subscriber.php', |
|
35 | - 'Applications\Entity\SubscriberInterface' => __DIR__ . '/Applications/Entity/SubscriberInterface.php', |
|
36 | - 'Applications\Entity\Validator\Application' => __DIR__ . '/Applications/Entity/Validator/Application.php', |
|
37 | - 'Applications\Factory\Auth\Dependency\ListListenerFactory' => __DIR__ . '/Applications/Factory/Auth/Dependency/ListListenerFactory.php', |
|
38 | - 'Applications\Factory\Form\AttachmentsFactory' => __DIR__ . '/Applications/Factory/Form/AttachmentsFactory.php', |
|
39 | - 'Applications\Factory\Form\ContactImageFactory' => __DIR__ . '/Applications/Factory/Form/ContactImageFactory.php', |
|
40 | - 'Applications\Factory\Listener\EventApplicationCreatedFactory' => __DIR__ . '/Applications/Factory/Listener/EventApplicationCreatedFactory.php', |
|
41 | - 'Applications\Factory\Listener\StatusChangeFactory' => __DIR__ . '/Applications/Factory/Listener/StatusChangeFactory.php', |
|
42 | - 'Applications\Factory\ModuleOptionsFactory' => __DIR__ . '/Applications/Factory/ModuleOptionsFactory.php', |
|
43 | - 'Applications\Filter\ActionToStatus' => __DIR__ . '/Applications/Filter/ActionToStatus.php', |
|
44 | - 'Applications\Form\Apply' => __DIR__ . '/Applications/Form/Apply.php', |
|
45 | - 'Applications\Form\Attributes' => __DIR__ . '/Applications/Form/Attributes.php', |
|
46 | - 'Applications\Form\Base' => __DIR__ . '/Applications/Form/Base.php', |
|
47 | - 'Applications\Form\BaseFieldset' => __DIR__ . '/Applications/Form/BaseFieldset.php', |
|
48 | - 'Applications\Form\CarbonCopyFieldset' => __DIR__ . '/Applications/Form/CarbonCopyFieldset.php', |
|
49 | - 'Applications\Form\CommentForm' => __DIR__ . '/Applications/Form/CommentForm.php', |
|
50 | - 'Applications\Form\ContactContainer' => __DIR__ . '/Applications/Form/ContactContainer.php', |
|
51 | - 'Applications\Form\Element\Ref' => __DIR__ . '/Applications/Form/Element/Ref.php', |
|
52 | - 'Applications\Form\Facts' => __DIR__ . '/Applications/Form/Facts.php', |
|
53 | - 'Applications\Form\FactsFieldset' => __DIR__ . '/Applications/Form/FactsFieldset.php', |
|
54 | - 'Applications\Form\FilterApplication' => __DIR__ . '/Applications/Form/FilterApplication.php', |
|
55 | - 'Applications\Form\Mail' => __DIR__ . '/Applications/Form/Mail.php', |
|
56 | - 'Applications\Form\SettingsFieldset' => __DIR__ . '/Applications/Form/SettingsFieldset.php', |
|
57 | - 'Applications\Listener\EventApplicationCreated' => __DIR__ . '/Applications/Listener/EventApplicationCreated.php', |
|
58 | - 'Applications\Listener\Events\ApplicationEvent' => __DIR__ . '/Applications/Listener/Events/ApplicationEvent.php', |
|
59 | - 'Applications\Listener\StatusChange' => __DIR__ . '/Applications/Listener/StatusChange.php', |
|
60 | - 'Applications\Mail\AcceptApplication' => __DIR__ . '/Applications/Mail/AcceptApplication.php', |
|
61 | - 'Applications\Mail\ApplicationCarbonCopy' => __DIR__ . '/Applications/Mail/ApplicationCarbonCopy.php', |
|
62 | - 'Applications\Mail\Confirmation' => __DIR__ . '/Applications/Mail/Confirmation.php', |
|
63 | - 'Applications\Mail\Forward' => __DIR__ . '/Applications/Mail/Forward.php', |
|
64 | - 'Applications\Mail\NewApplication' => __DIR__ . '/Applications/Mail/NewApplication.php', |
|
65 | - 'Applications\Mail\StatusChange' => __DIR__ . '/Applications/Mail/StatusChange.php', |
|
66 | - 'Applications\Mail\StatusChangeInterface' => __DIR__ . '/Applications/Mail/StatusChangeInterface.php', |
|
67 | - 'Applications\Options\ModuleOptions' => __DIR__ . '/Applications/Options/ModuleOptions.php', |
|
68 | - 'Applications\Repository\Application' => __DIR__ . '/Applications/Repository/Application.php', |
|
69 | - 'Applications\Repository\Event\DeleteRemovedAttachmentsSubscriber' => __DIR__ . '/Applications/Repository/Event/DeleteRemovedAttachmentsSubscriber.php', |
|
70 | - 'Applications\Repository\Event\JobReferencesUpdateListener' => __DIR__ . '/Applications/Repository/Event/JobReferencesUpdateListener.php', |
|
71 | - 'Applications\Repository\Event\UpdateFilesPermissionsSubscriber' => __DIR__ . '/Applications/Repository/Event/UpdateFilesPermissionsSubscriber.php', |
|
72 | - 'Applications\Repository\Event\UpdatePermissionsSubscriber' => __DIR__ . '/Applications/Repository/Event/UpdatePermissionsSubscriber.php', |
|
73 | - 'Applications\Repository\Filter\PaginationQuery' => __DIR__ . '/Applications/Repository/Filter/PaginationQuery.php', |
|
74 | - 'Applications\Repository\Filter\PaginationQueryFactory' => __DIR__ . '/Applications/Repository/Filter/PaginationQueryFactory.php', |
|
75 | - 'Applications\Repository\PaginationList' => __DIR__ . '/Applications/Repository/PaginationList.php', |
|
76 | - 'Applications\Repository\Subscriber' => __DIR__ . '/Applications/Repository/Subscriber.php', |
|
4 | + 'Applications\Acl\ApplicationAccessAssertion' => __DIR__.'/Applications/Acl/ApplicationAccessAssertion.php', |
|
5 | + 'Applications\Auth\Dependency\ListListener' => __DIR__.'/Applications/Auth/Dependency/ListListener.php', |
|
6 | + 'Applications\Controller\ApplyController' => __DIR__.'/Applications/Controller/ApplyController.php', |
|
7 | + 'Applications\Controller\CommentController' => __DIR__.'/Applications/Controller/CommentController.php', |
|
8 | + 'Applications\Controller\ConsoleController' => __DIR__.'/Applications/Controller/ConsoleController.php', |
|
9 | + 'Applications\Controller\IndexController' => __DIR__.'/Applications/Controller/IndexController.php', |
|
10 | + 'Applications\Controller\ManageController' => __DIR__.'/Applications/Controller/ManageController.php', |
|
11 | + 'Applications\Controller\MultimanageController' => __DIR__.'/Applications/Controller/MultimanageController.php', |
|
12 | + 'Applications\Controller\Plugin\StatusChanger' => __DIR__.'/Applications/Controller/Plugin/StatusChanger.php', |
|
13 | + 'Applications\Entity\Application' => __DIR__.'/Applications/Entity/Application.php', |
|
14 | + 'Applications\Entity\ApplicationInterface' => __DIR__.'/Applications/Entity/ApplicationInterface.php', |
|
15 | + 'Applications\Entity\Attachment' => __DIR__.'/Applications/Entity/Attachment.php', |
|
16 | + 'Applications\Entity\Attributes' => __DIR__.'/Applications/Entity/Attributes.php', |
|
17 | + 'Applications\Entity\Comment' => __DIR__.'/Applications/Entity/Comment.php', |
|
18 | + 'Applications\Entity\CommentInterface' => __DIR__.'/Applications/Entity/CommentInterface.php', |
|
19 | + 'Applications\Entity\Contact' => __DIR__.'/Applications/Entity/Contact.php', |
|
20 | + 'Applications\Entity\Cv' => __DIR__.'/Applications/Entity/Cv.php', |
|
21 | + 'Applications\Entity\Facts' => __DIR__.'/Applications/Entity/Facts.php', |
|
22 | + 'Applications\Entity\FactsInterface' => __DIR__.'/Applications/Entity/FactsInterface.php', |
|
23 | + 'Applications\Entity\History' => __DIR__.'/Applications/Entity/History.php', |
|
24 | + 'Applications\Entity\HistoryInterface' => __DIR__.'/Applications/Entity/HistoryInterface.php', |
|
25 | + 'Applications\Entity\InternalReferences' => __DIR__.'/Applications/Entity/InternalReferences.php', |
|
26 | + 'Applications\Entity\MailHistory' => __DIR__.'/Applications/Entity/MailHistory.php', |
|
27 | + 'Applications\Entity\MailHistoryInterface' => __DIR__.'/Applications/Entity/MailHistoryInterface.php', |
|
28 | + 'Applications\Entity\Rating' => __DIR__.'/Applications/Entity/Rating.php', |
|
29 | + 'Applications\Entity\RatingInterface' => __DIR__.'/Applications/Entity/RatingInterface.php', |
|
30 | + 'Applications\Entity\Settings' => __DIR__.'/Applications/Entity/Settings.php', |
|
31 | + 'Applications\Entity\SettingsInterface' => __DIR__.'/Applications/Entity/SettingsInterface.php', |
|
32 | + 'Applications\Entity\Status' => __DIR__.'/Applications/Entity/Status.php', |
|
33 | + 'Applications\Entity\StatusInterface' => __DIR__.'/Applications/Entity/StatusInterface.php', |
|
34 | + 'Applications\Entity\Subscriber' => __DIR__.'/Applications/Entity/Subscriber.php', |
|
35 | + 'Applications\Entity\SubscriberInterface' => __DIR__.'/Applications/Entity/SubscriberInterface.php', |
|
36 | + 'Applications\Entity\Validator\Application' => __DIR__.'/Applications/Entity/Validator/Application.php', |
|
37 | + 'Applications\Factory\Auth\Dependency\ListListenerFactory' => __DIR__.'/Applications/Factory/Auth/Dependency/ListListenerFactory.php', |
|
38 | + 'Applications\Factory\Form\AttachmentsFactory' => __DIR__.'/Applications/Factory/Form/AttachmentsFactory.php', |
|
39 | + 'Applications\Factory\Form\ContactImageFactory' => __DIR__.'/Applications/Factory/Form/ContactImageFactory.php', |
|
40 | + 'Applications\Factory\Listener\EventApplicationCreatedFactory' => __DIR__.'/Applications/Factory/Listener/EventApplicationCreatedFactory.php', |
|
41 | + 'Applications\Factory\Listener\StatusChangeFactory' => __DIR__.'/Applications/Factory/Listener/StatusChangeFactory.php', |
|
42 | + 'Applications\Factory\ModuleOptionsFactory' => __DIR__.'/Applications/Factory/ModuleOptionsFactory.php', |
|
43 | + 'Applications\Filter\ActionToStatus' => __DIR__.'/Applications/Filter/ActionToStatus.php', |
|
44 | + 'Applications\Form\Apply' => __DIR__.'/Applications/Form/Apply.php', |
|
45 | + 'Applications\Form\Attributes' => __DIR__.'/Applications/Form/Attributes.php', |
|
46 | + 'Applications\Form\Base' => __DIR__.'/Applications/Form/Base.php', |
|
47 | + 'Applications\Form\BaseFieldset' => __DIR__.'/Applications/Form/BaseFieldset.php', |
|
48 | + 'Applications\Form\CarbonCopyFieldset' => __DIR__.'/Applications/Form/CarbonCopyFieldset.php', |
|
49 | + 'Applications\Form\CommentForm' => __DIR__.'/Applications/Form/CommentForm.php', |
|
50 | + 'Applications\Form\ContactContainer' => __DIR__.'/Applications/Form/ContactContainer.php', |
|
51 | + 'Applications\Form\Element\Ref' => __DIR__.'/Applications/Form/Element/Ref.php', |
|
52 | + 'Applications\Form\Facts' => __DIR__.'/Applications/Form/Facts.php', |
|
53 | + 'Applications\Form\FactsFieldset' => __DIR__.'/Applications/Form/FactsFieldset.php', |
|
54 | + 'Applications\Form\FilterApplication' => __DIR__.'/Applications/Form/FilterApplication.php', |
|
55 | + 'Applications\Form\Mail' => __DIR__.'/Applications/Form/Mail.php', |
|
56 | + 'Applications\Form\SettingsFieldset' => __DIR__.'/Applications/Form/SettingsFieldset.php', |
|
57 | + 'Applications\Listener\EventApplicationCreated' => __DIR__.'/Applications/Listener/EventApplicationCreated.php', |
|
58 | + 'Applications\Listener\Events\ApplicationEvent' => __DIR__.'/Applications/Listener/Events/ApplicationEvent.php', |
|
59 | + 'Applications\Listener\StatusChange' => __DIR__.'/Applications/Listener/StatusChange.php', |
|
60 | + 'Applications\Mail\AcceptApplication' => __DIR__.'/Applications/Mail/AcceptApplication.php', |
|
61 | + 'Applications\Mail\ApplicationCarbonCopy' => __DIR__.'/Applications/Mail/ApplicationCarbonCopy.php', |
|
62 | + 'Applications\Mail\Confirmation' => __DIR__.'/Applications/Mail/Confirmation.php', |
|
63 | + 'Applications\Mail\Forward' => __DIR__.'/Applications/Mail/Forward.php', |
|
64 | + 'Applications\Mail\NewApplication' => __DIR__.'/Applications/Mail/NewApplication.php', |
|
65 | + 'Applications\Mail\StatusChange' => __DIR__.'/Applications/Mail/StatusChange.php', |
|
66 | + 'Applications\Mail\StatusChangeInterface' => __DIR__.'/Applications/Mail/StatusChangeInterface.php', |
|
67 | + 'Applications\Options\ModuleOptions' => __DIR__.'/Applications/Options/ModuleOptions.php', |
|
68 | + 'Applications\Repository\Application' => __DIR__.'/Applications/Repository/Application.php', |
|
69 | + 'Applications\Repository\Event\DeleteRemovedAttachmentsSubscriber' => __DIR__.'/Applications/Repository/Event/DeleteRemovedAttachmentsSubscriber.php', |
|
70 | + 'Applications\Repository\Event\JobReferencesUpdateListener' => __DIR__.'/Applications/Repository/Event/JobReferencesUpdateListener.php', |
|
71 | + 'Applications\Repository\Event\UpdateFilesPermissionsSubscriber' => __DIR__.'/Applications/Repository/Event/UpdateFilesPermissionsSubscriber.php', |
|
72 | + 'Applications\Repository\Event\UpdatePermissionsSubscriber' => __DIR__.'/Applications/Repository/Event/UpdatePermissionsSubscriber.php', |
|
73 | + 'Applications\Repository\Filter\PaginationQuery' => __DIR__.'/Applications/Repository/Filter/PaginationQuery.php', |
|
74 | + 'Applications\Repository\Filter\PaginationQueryFactory' => __DIR__.'/Applications/Repository/Filter/PaginationQueryFactory.php', |
|
75 | + 'Applications\Repository\PaginationList' => __DIR__.'/Applications/Repository/PaginationList.php', |
|
76 | + 'Applications\Repository\Subscriber' => __DIR__.'/Applications/Repository/Subscriber.php', |
|
77 | 77 | ); |
@@ -1,156 +1,156 @@ |
||
1 | 1 | <?php |
2 | 2 | // Generated by ZF2's ./bin/classmap_generator.php |
3 | 3 | return array( |
4 | - 'Acl\Assertion\AbstractEventManagerAwareAssertion' => __DIR__ . '/Acl/Assertion/AbstractEventManagerAwareAssertion.php', |
|
5 | - 'Acl\Assertion\AssertionEvent' => __DIR__ . '/Acl/Assertion/AssertionEvent.php', |
|
6 | - 'Acl\Assertion\AssertionManager' => __DIR__ . '/Acl/Assertion/AssertionManager.php', |
|
7 | - 'Acl\Assertion\AssertionManagerFactory' => __DIR__ . '/Acl/Assertion/AssertionManagerFactory.php', |
|
8 | - 'Acl\Config' => __DIR__ . '/Acl/Config.php', |
|
9 | - 'Acl\Controller\Plugin\Acl' => __DIR__ . '/Acl/Controller/Plugin/Acl.php', |
|
10 | - 'Acl\Controller\Plugin\AclFactory' => __DIR__ . '/Acl/Controller/Plugin/AclFactory.php', |
|
11 | - 'Acl\Factory\Service\AclFactory' => __DIR__ . '/Acl/Factory/Service/AclFactory.php', |
|
12 | - 'Acl\Factory\View\Helper\AclFactory' => __DIR__ . '/Acl/Factory/View/Helper/AclFactory.php', |
|
13 | - 'Acl\Listener\CheckPermissionsListener' => __DIR__ . '/Acl/Listener/CheckPermissionsListener.php', |
|
14 | - 'Acl\Listener\CheckPermissionsListenerFactory' => __DIR__ . '/Acl/Listener/CheckPermissionsListenerFactory.php', |
|
15 | - 'Acl\Service\Acl' => __DIR__ . '/Acl/Service/Acl.php', |
|
16 | - 'Acl\View\Helper\Acl' => __DIR__ . '/Acl/View/Helper/Acl.php', |
|
17 | - 'Auth\Adapter\ExternalApplication' => __DIR__ . '/Auth/Adapter/ExternalApplication.php', |
|
18 | - 'Auth\Adapter\HybridAuth' => __DIR__ . '/Auth/Adapter/HybridAuth.php', |
|
19 | - 'Auth\Adapter\User' => __DIR__ . '/Auth/Adapter/User.php', |
|
20 | - 'Auth\AuthenticationService' => __DIR__ . '/Auth/AuthenticationService.php', |
|
21 | - 'Auth\Controller\ForgotPasswordController' => __DIR__ . '/Auth/Controller/ForgotPasswordController.php', |
|
22 | - 'Auth\Controller\GotoResetPasswordController' => __DIR__ . '/Auth/Controller/GotoResetPasswordController.php', |
|
23 | - 'Auth\Controller\HybridAuthController' => __DIR__ . '/Auth/Controller/HybridAuthController.php', |
|
24 | - 'Auth\Controller\IndexController' => __DIR__ . '/Auth/Controller/IndexController.php', |
|
25 | - 'Auth\Controller\ManageController' => __DIR__ . '/Auth/Controller/ManageController.php', |
|
26 | - 'Auth\Controller\ManageGroupsController' => __DIR__ . '/Auth/Controller/ManageGroupsController.php', |
|
27 | - 'Auth\Controller\PasswordController' => __DIR__ . '/Auth/Controller/PasswordController.php', |
|
28 | - 'Auth\Controller\Plugin\Auth' => __DIR__ . '/Auth/Controller/Plugin/Auth.php', |
|
29 | - 'Auth\Controller\Plugin\LoginFilter' => __DIR__ . '/Auth/Controller/Plugin/LoginFilter.php', |
|
30 | - 'Auth\Controller\Plugin\OAuth' => __DIR__ . '/Auth/Controller/Plugin/OAuth.php', |
|
31 | - 'Auth\Controller\Plugin\Service\SocialProfilesFactory' => __DIR__ . '/Auth/Controller/Plugin/Service/SocialProfilesFactory.php', |
|
32 | - 'Auth\Controller\Plugin\SocialProfiles' => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles.php', |
|
33 | - 'Auth\Controller\Plugin\SocialProfiles\AbstractAdapter' => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles/AbstractAdapter.php', |
|
34 | - 'Auth\Controller\Plugin\SocialProfiles\Facebook' => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles/Facebook.php', |
|
35 | - 'Auth\Controller\Plugin\SocialProfiles\LinkedIn' => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles/LinkedIn.php', |
|
36 | - 'Auth\Controller\Plugin\SocialProfiles\Xing' => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles/Xing.php', |
|
37 | - 'Auth\Controller\Plugin\UserSwitcher' => __DIR__ . '/Auth/Controller/Plugin/UserSwitcher.php', |
|
38 | - 'Auth\Controller\RegisterConfirmationController' => __DIR__ . '/Auth/Controller/RegisterConfirmationController.php', |
|
39 | - 'Auth\Controller\RegisterController' => __DIR__ . '/Auth/Controller/RegisterController.php', |
|
40 | - 'Auth\Controller\RemoveController' => __DIR__ . '/Auth/Controller/RemoveController.php', |
|
41 | - 'Auth\Controller\SocialProfilesController' => __DIR__ . '/Auth/Controller/SocialProfilesController.php', |
|
42 | - 'Auth\Controller\UsersController' => __DIR__ . '/Auth/Controller/UsersController.php', |
|
43 | - 'Auth\Dependency\ListInterface' => __DIR__ . '/Auth/Dependency/ListInterface.php', |
|
44 | - 'Auth\Dependency\ListItem' => __DIR__ . '/Auth/Dependency/ListItem.php', |
|
45 | - 'Auth\Dependency\Manager' => __DIR__ . '/Auth/Dependency/Manager.php', |
|
46 | - 'Auth\Entity\AnonymousUser' => __DIR__ . '/Auth/Entity/AnonymousUser.php', |
|
47 | - 'Auth\Entity\AuthSession' => __DIR__ . '/Auth/Entity/AuthSession.php', |
|
48 | - 'Auth\Entity\Filter\CredentialFilter' => __DIR__ . '/Auth/Entity/Filter/CredentialFilter.php', |
|
49 | - 'Auth\Entity\Filter\UserToSearchResult' => __DIR__ . '/Auth/Entity/Filter/UserToSearchResult.php', |
|
50 | - 'Auth\Entity\Group' => __DIR__ . '/Auth/Entity/Group.php', |
|
51 | - 'Auth\Entity\GroupInterface' => __DIR__ . '/Auth/Entity/GroupInterface.php', |
|
52 | - 'Auth\Entity\Info' => __DIR__ . '/Auth/Entity/Info.php', |
|
53 | - 'Auth\Entity\InfoInterface' => __DIR__ . '/Auth/Entity/InfoInterface.php', |
|
54 | - 'Auth\Entity\SocialProfiles\AbstractProfile' => __DIR__ . '/Auth/Entity/SocialProfiles/AbstractProfile.php', |
|
55 | - 'Auth\Entity\SocialProfiles\Facebook' => __DIR__ . '/Auth/Entity/SocialProfiles/Facebook.php', |
|
56 | - 'Auth\Entity\SocialProfiles\LinkedIn' => __DIR__ . '/Auth/Entity/SocialProfiles/LinkedIn.php', |
|
57 | - 'Auth\Entity\SocialProfiles\ProfileInterface' => __DIR__ . '/Auth/Entity/SocialProfiles/ProfileInterface.php', |
|
58 | - 'Auth\Entity\SocialProfiles\Xing' => __DIR__ . '/Auth/Entity/SocialProfiles/Xing.php', |
|
59 | - 'Auth\Entity\Status' => __DIR__ . '/Auth/Entity/Status.php', |
|
60 | - 'Auth\Entity\Token' => __DIR__ . '/Auth/Entity/Token.php', |
|
61 | - 'Auth\Entity\User' => __DIR__ . '/Auth/Entity/User.php', |
|
62 | - 'Auth\Entity\UserImage' => __DIR__ . '/Auth/Entity/UserImage.php', |
|
63 | - 'Auth\Entity\UserInterface' => __DIR__ . '/Auth/Entity/UserInterface.php', |
|
64 | - 'Auth\Exception\ExceptionInterface' => __DIR__ . '/Auth/Exception/ExceptionInterface.php', |
|
65 | - 'Auth\Exception\UnauthorizedAccessException' => __DIR__ . '/Auth/Exception/UnauthorizedAccessException.php', |
|
66 | - 'Auth\Exception\UnauthorizedImageAccessException' => __DIR__ . '/Auth/Exception/UnauthorizedImageAccessException.php', |
|
67 | - 'Auth\Exception\UserDeactivatedException' => __DIR__ . '/Auth/Exception/UserDeactivatedException.php', |
|
68 | - 'Auth\Factory\Adapter\ExternalApplicationAdapterFactory' => __DIR__ . '/Auth/Factory/Adapter/ExternalApplicationAdapterFactory.php', |
|
69 | - 'Auth\Factory\Adapter\HybridAuthAdapterFactory' => __DIR__ . '/Auth/Factory/Adapter/HybridAuthAdapterFactory.php', |
|
70 | - 'Auth\Factory\Adapter\UserAdapterFactory' => __DIR__ . '/Auth/Factory/Adapter/UserAdapterFactory.php', |
|
71 | - 'Auth\Factory\Controller\ForgotPasswordControllerFactory' => __DIR__ . '/Auth/Factory/Controller/ForgotPasswordControllerFactory.php', |
|
72 | - 'Auth\Factory\Controller\GotoResetPasswordControllerFactory' => __DIR__ . '/Auth/Factory/Controller/GotoResetPasswordControllerFactory.php', |
|
73 | - 'Auth\Factory\Controller\IndexControllerFactory' => __DIR__ . '/Auth/Factory/Controller/IndexControllerFactory.php', |
|
74 | - 'Auth\Factory\Controller\PasswordControllerFactory' => __DIR__ . '/Auth/Factory/Controller/PasswordControllerFactory.php', |
|
75 | - 'Auth\Factory\Controller\Plugin\UserSwitcherFactory' => __DIR__ . '/Auth/Factory/Controller/Plugin/UserSwitcherFactory.php', |
|
76 | - 'Auth\Factory\Controller\RegisterConfirmationControllerFactory' => __DIR__ . '/Auth/Factory/Controller/RegisterConfirmationControllerFactory.php', |
|
77 | - 'Auth\Factory\Controller\RegisterControllerFactory' => __DIR__ . '/Auth/Factory/Controller/RegisterControllerFactory.php', |
|
78 | - 'Auth\Factory\Controller\RemoveControllerFactory' => __DIR__ . '/Auth/Factory/Controller/RemoveControllerFactory.php', |
|
79 | - 'Auth\Factory\Controller\UsersControllerFactory' => __DIR__ . '/Auth/Factory/Controller/UsersControllerFactory.php', |
|
80 | - 'Auth\Factory\Dependency\ManagerFactory' => __DIR__ . '/Auth/Factory/Dependency/ManagerFactory.php', |
|
81 | - 'Auth\Factory\Form\Element\UserSearchbarFactory' => __DIR__ . '/Auth/Factory/Form/Element/UserSearchbarFactory.php', |
|
82 | - 'Auth\Factory\Form\ForgotPasswordFactory' => __DIR__ . '/Auth/Factory/Form/ForgotPasswordFactory.php', |
|
83 | - 'Auth\Factory\Form\LoginFactory' => __DIR__ . '/Auth/Factory/Form/LoginFactory.php', |
|
84 | - 'Auth\Factory\Form\RegisterFactory' => __DIR__ . '/Auth/Factory/Form/RegisterFactory.php', |
|
85 | - 'Auth\Factory\Form\RoleSelectFactory' => __DIR__ . '/Auth/Factory/Form/RoleSelectFactory.php', |
|
86 | - 'Auth\Factory\Form\SocialProfilesFieldsetFactory' => __DIR__ . '/Auth/Factory/Form/SocialProfilesFieldsetFactory.php', |
|
87 | - 'Auth\Factory\Form\UserInfoFieldsetFactory' => __DIR__ . '/Auth/Factory/Form/UserInfoFieldsetFactory.php', |
|
88 | - 'Auth\Factory\Form\UserStatusFieldsetFactory' => __DIR__ . '/Auth/Factory/Form/UserStatusFieldsetFactory.php', |
|
89 | - 'Auth\Factory\Listener\ExceptionStrategyFactory' => __DIR__ . '/Auth/Factory/Listener/ExceptionStrategyFactory.php', |
|
90 | - 'Auth\Factory\Listener\MailForgotPasswordFactory' => __DIR__ . '/Auth/Factory/Listener/MailForgotPasswordFactory.php', |
|
91 | - 'Auth\Factory\ModuleOptionsFactory' => __DIR__ . '/Auth/Factory/ModuleOptionsFactory.php', |
|
92 | - 'Auth\Factory\Service\AuthenticationServiceFactory' => __DIR__ . '/Auth/Factory/Service/AuthenticationServiceFactory.php', |
|
93 | - 'Auth\Factory\Service\ForgotPasswordFactory' => __DIR__ . '/Auth/Factory/Service/ForgotPasswordFactory.php', |
|
94 | - 'Auth\Factory\Service\GotoResetPasswordFactory' => __DIR__ . '/Auth/Factory/Service/GotoResetPasswordFactory.php', |
|
95 | - 'Auth\Factory\Service\HybridAuthFactory' => __DIR__ . '/Auth/Factory/Service/HybridAuthFactory.php', |
|
96 | - 'Auth\Factory\Service\RegisterConfirmationFactory' => __DIR__ . '/Auth/Factory/Service/RegisterConfirmationFactory.php', |
|
97 | - 'Auth\Factory\Service\RegisterFactory' => __DIR__ . '/Auth/Factory/Service/RegisterFactory.php', |
|
98 | - 'Auth\Factory\Service\UserUniqueTokenGeneratorFactory' => __DIR__ . '/Auth/Factory/Service/UserUniqueTokenGeneratorFactory.php', |
|
99 | - 'Auth\Factory\View\Helper\AuthFactory' => __DIR__ . '/Auth/Factory/View/Helper/AuthFactory.php', |
|
100 | - 'Auth\Filter\LoginFilter' => __DIR__ . '/Auth/Filter/LoginFilter.php', |
|
101 | - 'Auth\Filter\StripQueryParams' => __DIR__ . '/Auth/Filter/StripQueryParams.php', |
|
102 | - 'Auth\Form\Element\SocialProfilesButton' => __DIR__ . '/Auth/Form/Element/SocialProfilesButton.php', |
|
103 | - 'Auth\Form\ForgotPassword' => __DIR__ . '/Auth/Form/ForgotPassword.php', |
|
104 | - 'Auth\Form\ForgotPasswordInputFilter' => __DIR__ . '/Auth/Form/ForgotPasswordInputFilter.php', |
|
105 | - 'Auth\Form\Group' => __DIR__ . '/Auth/Form/Group.php', |
|
106 | - 'Auth\Form\GroupFieldset' => __DIR__ . '/Auth/Form/GroupFieldset.php', |
|
107 | - 'Auth\Form\GroupUsersCollection' => __DIR__ . '/Auth/Form/GroupUsersCollection.php', |
|
108 | - 'Auth\Form\Hydrator\SocialProfilesHydrator' => __DIR__ . '/Auth/Form/Hydrator/SocialProfilesHydrator.php', |
|
109 | - 'Auth\Form\Hydrator\UserPasswordFieldsetHydrator' => __DIR__ . '/Auth/Form/Hydrator/UserPasswordFieldsetHydrator.php', |
|
110 | - 'Auth\Form\Hydrator\UserPasswordHydrator' => __DIR__ . '/Auth/Form/Hydrator/UserPasswordHydrator.php', |
|
111 | - 'Auth\Form\Login' => __DIR__ . '/Auth/Form/Login.php', |
|
112 | - 'Auth\Form\LoginInputFilter' => __DIR__ . '/Auth/Form/LoginInputFilter.php', |
|
113 | - 'Auth\Form\Register' => __DIR__ . '/Auth/Form/Register.php', |
|
114 | - 'Auth\Form\RegisterInputFilter' => __DIR__ . '/Auth/Form/RegisterInputFilter.php', |
|
115 | - 'Auth\Form\SocialProfiles' => __DIR__ . '/Auth/Form/SocialProfiles.php', |
|
116 | - 'Auth\Form\SocialProfilesFieldset' => __DIR__ . '/Auth/Form/SocialProfilesFieldset.php', |
|
117 | - 'Auth\Form\UserBase' => __DIR__ . '/Auth/Form/UserBase.php', |
|
118 | - 'Auth\Form\UserBaseFieldset' => __DIR__ . '/Auth/Form/UserBaseFieldset.php', |
|
119 | - 'Auth\Form\UserImageFactory' => __DIR__ . '/Auth/Form/UserImageFactory.php', |
|
120 | - 'Auth\Form\UserInfo' => __DIR__ . '/Auth/Form/UserInfo.php', |
|
121 | - 'Auth\Form\UserInfoContainer' => __DIR__ . '/Auth/Form/UserInfoContainer.php', |
|
122 | - 'Auth\Form\UserInfoFieldset' => __DIR__ . '/Auth/Form/UserInfoFieldset.php', |
|
123 | - 'Auth\Form\UserPassword' => __DIR__ . '/Auth/Form/UserPassword.php', |
|
124 | - 'Auth\Form\UserPasswordFieldset' => __DIR__ . '/Auth/Form/UserPasswordFieldset.php', |
|
125 | - 'Auth\Form\UserProfileContainer' => __DIR__ . '/Auth/Form/UserProfileContainer.php', |
|
126 | - 'Auth\Form\UserStatus' => __DIR__ . '/Auth/Form/UserStatus.php', |
|
127 | - 'Auth\Form\UserStatusContainer' => __DIR__ . '/Auth/Form/UserStatusContainer.php', |
|
128 | - 'Auth\Form\UserStatusFieldset' => __DIR__ . '/Auth/Form/UserStatusFieldset.php', |
|
129 | - 'Auth\Form\Validator\UniqueGroupName' => __DIR__ . '/Auth/Form/Validator/UniqueGroupName.php', |
|
130 | - 'Auth\Form\Validator\UniqueGroupNameFactory' => __DIR__ . '/Auth/Form/Validator/UniqueGroupNameFactory.php', |
|
131 | - 'Auth\Listener\AuthAggregateListener' => __DIR__ . '/Auth/Listener/AuthAggregateListener.php', |
|
132 | - 'Auth\Listener\DeactivatedUserListener' => __DIR__ . '/Auth/Listener/DeactivatedUserListener.php', |
|
133 | - 'Auth\Listener\Events\AuthEvent' => __DIR__ . '/Auth/Listener/Events/AuthEvent.php', |
|
134 | - 'Auth\Listener\MailForgotPassword' => __DIR__ . '/Auth/Listener/MailForgotPassword.php', |
|
135 | - 'Auth\Listener\SocialProfilesUnconfiguredErrorListener' => __DIR__ . '/Auth/Listener/SocialProfilesUnconfiguredErrorListener.php', |
|
136 | - 'Auth\Listener\TokenListener' => __DIR__ . '/Auth/Listener/TokenListener.php', |
|
137 | - 'Auth\Listener\UnauthorizedAccessListener' => __DIR__ . '/Auth/Listener/UnauthorizedAccessListener.php', |
|
138 | - 'Auth\Options\CaptchaOptions' => __DIR__ . '/Auth/Options/CaptchaOptions.php', |
|
139 | - 'Auth\Options\ModuleOptions' => __DIR__ . '/Auth/Options/ModuleOptions.php', |
|
140 | - 'Auth\Repository\Filter\PaginationSearchUsers' => __DIR__ . '/Auth/Repository/Filter/PaginationSearchUsers.php', |
|
141 | - 'Auth\Repository\User' => __DIR__ . '/Auth/Repository/User.php', |
|
142 | - 'Auth\Service\Exception\TokenExpirationDateExpiredException' => __DIR__ . '/Auth/Service/Exception/TokenExpirationDateExpiredException.php', |
|
143 | - 'Auth\Service\Exception\UserAlreadyExistsException' => __DIR__ . '/Auth/Service/Exception/UserAlreadyExistsException.php', |
|
144 | - 'Auth\Service\Exception\UserDoesNotHaveAnEmailException' => __DIR__ . '/Auth/Service/Exception/UserDoesNotHaveAnEmailException.php', |
|
145 | - 'Auth\Service\Exception\UserNotFoundException' => __DIR__ . '/Auth/Service/Exception/UserNotFoundException.php', |
|
146 | - 'Auth\Service\ForgotPassword' => __DIR__ . '/Auth/Service/ForgotPassword.php', |
|
147 | - 'Auth\Service\GotoResetPassword' => __DIR__ . '/Auth/Service/GotoResetPassword.php', |
|
148 | - 'Auth\Service\Register' => __DIR__ . '/Auth/Service/Register.php', |
|
149 | - 'Auth\Service\RegisterConfirmation' => __DIR__ . '/Auth/Service/RegisterConfirmation.php', |
|
150 | - 'Auth\Service\UserUniqueTokenGenerator' => __DIR__ . '/Auth/Service/UserUniqueTokenGenerator.php', |
|
151 | - 'Auth\View\Helper\Auth' => __DIR__ . '/Auth/View/Helper/Auth.php', |
|
152 | - 'Auth\View\Helper\BuildReferer' => __DIR__ . '/Auth/View/Helper/BuildReferer.php', |
|
153 | - 'Auth\View\Helper\LoginInfo' => __DIR__ . '/Auth/View/Helper/LoginInfo.php', |
|
154 | - 'Auth\View\Helper\StripQueryParams' => __DIR__ . '/Auth/View/Helper/StripQueryParams.php', |
|
155 | - 'Auth\View\InjectLoginInfoListener' => __DIR__ . '/Auth/View/InjectLoginInfoListener.php', |
|
4 | + 'Acl\Assertion\AbstractEventManagerAwareAssertion' => __DIR__.'/Acl/Assertion/AbstractEventManagerAwareAssertion.php', |
|
5 | + 'Acl\Assertion\AssertionEvent' => __DIR__.'/Acl/Assertion/AssertionEvent.php', |
|
6 | + 'Acl\Assertion\AssertionManager' => __DIR__.'/Acl/Assertion/AssertionManager.php', |
|
7 | + 'Acl\Assertion\AssertionManagerFactory' => __DIR__.'/Acl/Assertion/AssertionManagerFactory.php', |
|
8 | + 'Acl\Config' => __DIR__.'/Acl/Config.php', |
|
9 | + 'Acl\Controller\Plugin\Acl' => __DIR__.'/Acl/Controller/Plugin/Acl.php', |
|
10 | + 'Acl\Controller\Plugin\AclFactory' => __DIR__.'/Acl/Controller/Plugin/AclFactory.php', |
|
11 | + 'Acl\Factory\Service\AclFactory' => __DIR__.'/Acl/Factory/Service/AclFactory.php', |
|
12 | + 'Acl\Factory\View\Helper\AclFactory' => __DIR__.'/Acl/Factory/View/Helper/AclFactory.php', |
|
13 | + 'Acl\Listener\CheckPermissionsListener' => __DIR__.'/Acl/Listener/CheckPermissionsListener.php', |
|
14 | + 'Acl\Listener\CheckPermissionsListenerFactory' => __DIR__.'/Acl/Listener/CheckPermissionsListenerFactory.php', |
|
15 | + 'Acl\Service\Acl' => __DIR__.'/Acl/Service/Acl.php', |
|
16 | + 'Acl\View\Helper\Acl' => __DIR__.'/Acl/View/Helper/Acl.php', |
|
17 | + 'Auth\Adapter\ExternalApplication' => __DIR__.'/Auth/Adapter/ExternalApplication.php', |
|
18 | + 'Auth\Adapter\HybridAuth' => __DIR__.'/Auth/Adapter/HybridAuth.php', |
|
19 | + 'Auth\Adapter\User' => __DIR__.'/Auth/Adapter/User.php', |
|
20 | + 'Auth\AuthenticationService' => __DIR__.'/Auth/AuthenticationService.php', |
|
21 | + 'Auth\Controller\ForgotPasswordController' => __DIR__.'/Auth/Controller/ForgotPasswordController.php', |
|
22 | + 'Auth\Controller\GotoResetPasswordController' => __DIR__.'/Auth/Controller/GotoResetPasswordController.php', |
|
23 | + 'Auth\Controller\HybridAuthController' => __DIR__.'/Auth/Controller/HybridAuthController.php', |
|
24 | + 'Auth\Controller\IndexController' => __DIR__.'/Auth/Controller/IndexController.php', |
|
25 | + 'Auth\Controller\ManageController' => __DIR__.'/Auth/Controller/ManageController.php', |
|
26 | + 'Auth\Controller\ManageGroupsController' => __DIR__.'/Auth/Controller/ManageGroupsController.php', |
|
27 | + 'Auth\Controller\PasswordController' => __DIR__.'/Auth/Controller/PasswordController.php', |
|
28 | + 'Auth\Controller\Plugin\Auth' => __DIR__.'/Auth/Controller/Plugin/Auth.php', |
|
29 | + 'Auth\Controller\Plugin\LoginFilter' => __DIR__.'/Auth/Controller/Plugin/LoginFilter.php', |
|
30 | + 'Auth\Controller\Plugin\OAuth' => __DIR__.'/Auth/Controller/Plugin/OAuth.php', |
|
31 | + 'Auth\Controller\Plugin\Service\SocialProfilesFactory' => __DIR__.'/Auth/Controller/Plugin/Service/SocialProfilesFactory.php', |
|
32 | + 'Auth\Controller\Plugin\SocialProfiles' => __DIR__.'/Auth/Controller/Plugin/SocialProfiles.php', |
|
33 | + 'Auth\Controller\Plugin\SocialProfiles\AbstractAdapter' => __DIR__.'/Auth/Controller/Plugin/SocialProfiles/AbstractAdapter.php', |
|
34 | + 'Auth\Controller\Plugin\SocialProfiles\Facebook' => __DIR__.'/Auth/Controller/Plugin/SocialProfiles/Facebook.php', |
|
35 | + 'Auth\Controller\Plugin\SocialProfiles\LinkedIn' => __DIR__.'/Auth/Controller/Plugin/SocialProfiles/LinkedIn.php', |
|
36 | + 'Auth\Controller\Plugin\SocialProfiles\Xing' => __DIR__.'/Auth/Controller/Plugin/SocialProfiles/Xing.php', |
|
37 | + 'Auth\Controller\Plugin\UserSwitcher' => __DIR__.'/Auth/Controller/Plugin/UserSwitcher.php', |
|
38 | + 'Auth\Controller\RegisterConfirmationController' => __DIR__.'/Auth/Controller/RegisterConfirmationController.php', |
|
39 | + 'Auth\Controller\RegisterController' => __DIR__.'/Auth/Controller/RegisterController.php', |
|
40 | + 'Auth\Controller\RemoveController' => __DIR__.'/Auth/Controller/RemoveController.php', |
|
41 | + 'Auth\Controller\SocialProfilesController' => __DIR__.'/Auth/Controller/SocialProfilesController.php', |
|
42 | + 'Auth\Controller\UsersController' => __DIR__.'/Auth/Controller/UsersController.php', |
|
43 | + 'Auth\Dependency\ListInterface' => __DIR__.'/Auth/Dependency/ListInterface.php', |
|
44 | + 'Auth\Dependency\ListItem' => __DIR__.'/Auth/Dependency/ListItem.php', |
|
45 | + 'Auth\Dependency\Manager' => __DIR__.'/Auth/Dependency/Manager.php', |
|
46 | + 'Auth\Entity\AnonymousUser' => __DIR__.'/Auth/Entity/AnonymousUser.php', |
|
47 | + 'Auth\Entity\AuthSession' => __DIR__.'/Auth/Entity/AuthSession.php', |
|
48 | + 'Auth\Entity\Filter\CredentialFilter' => __DIR__.'/Auth/Entity/Filter/CredentialFilter.php', |
|
49 | + 'Auth\Entity\Filter\UserToSearchResult' => __DIR__.'/Auth/Entity/Filter/UserToSearchResult.php', |
|
50 | + 'Auth\Entity\Group' => __DIR__.'/Auth/Entity/Group.php', |
|
51 | + 'Auth\Entity\GroupInterface' => __DIR__.'/Auth/Entity/GroupInterface.php', |
|
52 | + 'Auth\Entity\Info' => __DIR__.'/Auth/Entity/Info.php', |
|
53 | + 'Auth\Entity\InfoInterface' => __DIR__.'/Auth/Entity/InfoInterface.php', |
|
54 | + 'Auth\Entity\SocialProfiles\AbstractProfile' => __DIR__.'/Auth/Entity/SocialProfiles/AbstractProfile.php', |
|
55 | + 'Auth\Entity\SocialProfiles\Facebook' => __DIR__.'/Auth/Entity/SocialProfiles/Facebook.php', |
|
56 | + 'Auth\Entity\SocialProfiles\LinkedIn' => __DIR__.'/Auth/Entity/SocialProfiles/LinkedIn.php', |
|
57 | + 'Auth\Entity\SocialProfiles\ProfileInterface' => __DIR__.'/Auth/Entity/SocialProfiles/ProfileInterface.php', |
|
58 | + 'Auth\Entity\SocialProfiles\Xing' => __DIR__.'/Auth/Entity/SocialProfiles/Xing.php', |
|
59 | + 'Auth\Entity\Status' => __DIR__.'/Auth/Entity/Status.php', |
|
60 | + 'Auth\Entity\Token' => __DIR__.'/Auth/Entity/Token.php', |
|
61 | + 'Auth\Entity\User' => __DIR__.'/Auth/Entity/User.php', |
|
62 | + 'Auth\Entity\UserImage' => __DIR__.'/Auth/Entity/UserImage.php', |
|
63 | + 'Auth\Entity\UserInterface' => __DIR__.'/Auth/Entity/UserInterface.php', |
|
64 | + 'Auth\Exception\ExceptionInterface' => __DIR__.'/Auth/Exception/ExceptionInterface.php', |
|
65 | + 'Auth\Exception\UnauthorizedAccessException' => __DIR__.'/Auth/Exception/UnauthorizedAccessException.php', |
|
66 | + 'Auth\Exception\UnauthorizedImageAccessException' => __DIR__.'/Auth/Exception/UnauthorizedImageAccessException.php', |
|
67 | + 'Auth\Exception\UserDeactivatedException' => __DIR__.'/Auth/Exception/UserDeactivatedException.php', |
|
68 | + 'Auth\Factory\Adapter\ExternalApplicationAdapterFactory' => __DIR__.'/Auth/Factory/Adapter/ExternalApplicationAdapterFactory.php', |
|
69 | + 'Auth\Factory\Adapter\HybridAuthAdapterFactory' => __DIR__.'/Auth/Factory/Adapter/HybridAuthAdapterFactory.php', |
|
70 | + 'Auth\Factory\Adapter\UserAdapterFactory' => __DIR__.'/Auth/Factory/Adapter/UserAdapterFactory.php', |
|
71 | + 'Auth\Factory\Controller\ForgotPasswordControllerFactory' => __DIR__.'/Auth/Factory/Controller/ForgotPasswordControllerFactory.php', |
|
72 | + 'Auth\Factory\Controller\GotoResetPasswordControllerFactory' => __DIR__.'/Auth/Factory/Controller/GotoResetPasswordControllerFactory.php', |
|
73 | + 'Auth\Factory\Controller\IndexControllerFactory' => __DIR__.'/Auth/Factory/Controller/IndexControllerFactory.php', |
|
74 | + 'Auth\Factory\Controller\PasswordControllerFactory' => __DIR__.'/Auth/Factory/Controller/PasswordControllerFactory.php', |
|
75 | + 'Auth\Factory\Controller\Plugin\UserSwitcherFactory' => __DIR__.'/Auth/Factory/Controller/Plugin/UserSwitcherFactory.php', |
|
76 | + 'Auth\Factory\Controller\RegisterConfirmationControllerFactory' => __DIR__.'/Auth/Factory/Controller/RegisterConfirmationControllerFactory.php', |
|
77 | + 'Auth\Factory\Controller\RegisterControllerFactory' => __DIR__.'/Auth/Factory/Controller/RegisterControllerFactory.php', |
|
78 | + 'Auth\Factory\Controller\RemoveControllerFactory' => __DIR__.'/Auth/Factory/Controller/RemoveControllerFactory.php', |
|
79 | + 'Auth\Factory\Controller\UsersControllerFactory' => __DIR__.'/Auth/Factory/Controller/UsersControllerFactory.php', |
|
80 | + 'Auth\Factory\Dependency\ManagerFactory' => __DIR__.'/Auth/Factory/Dependency/ManagerFactory.php', |
|
81 | + 'Auth\Factory\Form\Element\UserSearchbarFactory' => __DIR__.'/Auth/Factory/Form/Element/UserSearchbarFactory.php', |
|
82 | + 'Auth\Factory\Form\ForgotPasswordFactory' => __DIR__.'/Auth/Factory/Form/ForgotPasswordFactory.php', |
|
83 | + 'Auth\Factory\Form\LoginFactory' => __DIR__.'/Auth/Factory/Form/LoginFactory.php', |
|
84 | + 'Auth\Factory\Form\RegisterFactory' => __DIR__.'/Auth/Factory/Form/RegisterFactory.php', |
|
85 | + 'Auth\Factory\Form\RoleSelectFactory' => __DIR__.'/Auth/Factory/Form/RoleSelectFactory.php', |
|
86 | + 'Auth\Factory\Form\SocialProfilesFieldsetFactory' => __DIR__.'/Auth/Factory/Form/SocialProfilesFieldsetFactory.php', |
|
87 | + 'Auth\Factory\Form\UserInfoFieldsetFactory' => __DIR__.'/Auth/Factory/Form/UserInfoFieldsetFactory.php', |
|
88 | + 'Auth\Factory\Form\UserStatusFieldsetFactory' => __DIR__.'/Auth/Factory/Form/UserStatusFieldsetFactory.php', |
|
89 | + 'Auth\Factory\Listener\ExceptionStrategyFactory' => __DIR__.'/Auth/Factory/Listener/ExceptionStrategyFactory.php', |
|
90 | + 'Auth\Factory\Listener\MailForgotPasswordFactory' => __DIR__.'/Auth/Factory/Listener/MailForgotPasswordFactory.php', |
|
91 | + 'Auth\Factory\ModuleOptionsFactory' => __DIR__.'/Auth/Factory/ModuleOptionsFactory.php', |
|
92 | + 'Auth\Factory\Service\AuthenticationServiceFactory' => __DIR__.'/Auth/Factory/Service/AuthenticationServiceFactory.php', |
|
93 | + 'Auth\Factory\Service\ForgotPasswordFactory' => __DIR__.'/Auth/Factory/Service/ForgotPasswordFactory.php', |
|
94 | + 'Auth\Factory\Service\GotoResetPasswordFactory' => __DIR__.'/Auth/Factory/Service/GotoResetPasswordFactory.php', |
|
95 | + 'Auth\Factory\Service\HybridAuthFactory' => __DIR__.'/Auth/Factory/Service/HybridAuthFactory.php', |
|
96 | + 'Auth\Factory\Service\RegisterConfirmationFactory' => __DIR__.'/Auth/Factory/Service/RegisterConfirmationFactory.php', |
|
97 | + 'Auth\Factory\Service\RegisterFactory' => __DIR__.'/Auth/Factory/Service/RegisterFactory.php', |
|
98 | + 'Auth\Factory\Service\UserUniqueTokenGeneratorFactory' => __DIR__.'/Auth/Factory/Service/UserUniqueTokenGeneratorFactory.php', |
|
99 | + 'Auth\Factory\View\Helper\AuthFactory' => __DIR__.'/Auth/Factory/View/Helper/AuthFactory.php', |
|
100 | + 'Auth\Filter\LoginFilter' => __DIR__.'/Auth/Filter/LoginFilter.php', |
|
101 | + 'Auth\Filter\StripQueryParams' => __DIR__.'/Auth/Filter/StripQueryParams.php', |
|
102 | + 'Auth\Form\Element\SocialProfilesButton' => __DIR__.'/Auth/Form/Element/SocialProfilesButton.php', |
|
103 | + 'Auth\Form\ForgotPassword' => __DIR__.'/Auth/Form/ForgotPassword.php', |
|
104 | + 'Auth\Form\ForgotPasswordInputFilter' => __DIR__.'/Auth/Form/ForgotPasswordInputFilter.php', |
|
105 | + 'Auth\Form\Group' => __DIR__.'/Auth/Form/Group.php', |
|
106 | + 'Auth\Form\GroupFieldset' => __DIR__.'/Auth/Form/GroupFieldset.php', |
|
107 | + 'Auth\Form\GroupUsersCollection' => __DIR__.'/Auth/Form/GroupUsersCollection.php', |
|
108 | + 'Auth\Form\Hydrator\SocialProfilesHydrator' => __DIR__.'/Auth/Form/Hydrator/SocialProfilesHydrator.php', |
|
109 | + 'Auth\Form\Hydrator\UserPasswordFieldsetHydrator' => __DIR__.'/Auth/Form/Hydrator/UserPasswordFieldsetHydrator.php', |
|
110 | + 'Auth\Form\Hydrator\UserPasswordHydrator' => __DIR__.'/Auth/Form/Hydrator/UserPasswordHydrator.php', |
|
111 | + 'Auth\Form\Login' => __DIR__.'/Auth/Form/Login.php', |
|
112 | + 'Auth\Form\LoginInputFilter' => __DIR__.'/Auth/Form/LoginInputFilter.php', |
|
113 | + 'Auth\Form\Register' => __DIR__.'/Auth/Form/Register.php', |
|
114 | + 'Auth\Form\RegisterInputFilter' => __DIR__.'/Auth/Form/RegisterInputFilter.php', |
|
115 | + 'Auth\Form\SocialProfiles' => __DIR__.'/Auth/Form/SocialProfiles.php', |
|
116 | + 'Auth\Form\SocialProfilesFieldset' => __DIR__.'/Auth/Form/SocialProfilesFieldset.php', |
|
117 | + 'Auth\Form\UserBase' => __DIR__.'/Auth/Form/UserBase.php', |
|
118 | + 'Auth\Form\UserBaseFieldset' => __DIR__.'/Auth/Form/UserBaseFieldset.php', |
|
119 | + 'Auth\Form\UserImageFactory' => __DIR__.'/Auth/Form/UserImageFactory.php', |
|
120 | + 'Auth\Form\UserInfo' => __DIR__.'/Auth/Form/UserInfo.php', |
|
121 | + 'Auth\Form\UserInfoContainer' => __DIR__.'/Auth/Form/UserInfoContainer.php', |
|
122 | + 'Auth\Form\UserInfoFieldset' => __DIR__.'/Auth/Form/UserInfoFieldset.php', |
|
123 | + 'Auth\Form\UserPassword' => __DIR__.'/Auth/Form/UserPassword.php', |
|
124 | + 'Auth\Form\UserPasswordFieldset' => __DIR__.'/Auth/Form/UserPasswordFieldset.php', |
|
125 | + 'Auth\Form\UserProfileContainer' => __DIR__.'/Auth/Form/UserProfileContainer.php', |
|
126 | + 'Auth\Form\UserStatus' => __DIR__.'/Auth/Form/UserStatus.php', |
|
127 | + 'Auth\Form\UserStatusContainer' => __DIR__.'/Auth/Form/UserStatusContainer.php', |
|
128 | + 'Auth\Form\UserStatusFieldset' => __DIR__.'/Auth/Form/UserStatusFieldset.php', |
|
129 | + 'Auth\Form\Validator\UniqueGroupName' => __DIR__.'/Auth/Form/Validator/UniqueGroupName.php', |
|
130 | + 'Auth\Form\Validator\UniqueGroupNameFactory' => __DIR__.'/Auth/Form/Validator/UniqueGroupNameFactory.php', |
|
131 | + 'Auth\Listener\AuthAggregateListener' => __DIR__.'/Auth/Listener/AuthAggregateListener.php', |
|
132 | + 'Auth\Listener\DeactivatedUserListener' => __DIR__.'/Auth/Listener/DeactivatedUserListener.php', |
|
133 | + 'Auth\Listener\Events\AuthEvent' => __DIR__.'/Auth/Listener/Events/AuthEvent.php', |
|
134 | + 'Auth\Listener\MailForgotPassword' => __DIR__.'/Auth/Listener/MailForgotPassword.php', |
|
135 | + 'Auth\Listener\SocialProfilesUnconfiguredErrorListener' => __DIR__.'/Auth/Listener/SocialProfilesUnconfiguredErrorListener.php', |
|
136 | + 'Auth\Listener\TokenListener' => __DIR__.'/Auth/Listener/TokenListener.php', |
|
137 | + 'Auth\Listener\UnauthorizedAccessListener' => __DIR__.'/Auth/Listener/UnauthorizedAccessListener.php', |
|
138 | + 'Auth\Options\CaptchaOptions' => __DIR__.'/Auth/Options/CaptchaOptions.php', |
|
139 | + 'Auth\Options\ModuleOptions' => __DIR__.'/Auth/Options/ModuleOptions.php', |
|
140 | + 'Auth\Repository\Filter\PaginationSearchUsers' => __DIR__.'/Auth/Repository/Filter/PaginationSearchUsers.php', |
|
141 | + 'Auth\Repository\User' => __DIR__.'/Auth/Repository/User.php', |
|
142 | + 'Auth\Service\Exception\TokenExpirationDateExpiredException' => __DIR__.'/Auth/Service/Exception/TokenExpirationDateExpiredException.php', |
|
143 | + 'Auth\Service\Exception\UserAlreadyExistsException' => __DIR__.'/Auth/Service/Exception/UserAlreadyExistsException.php', |
|
144 | + 'Auth\Service\Exception\UserDoesNotHaveAnEmailException' => __DIR__.'/Auth/Service/Exception/UserDoesNotHaveAnEmailException.php', |
|
145 | + 'Auth\Service\Exception\UserNotFoundException' => __DIR__.'/Auth/Service/Exception/UserNotFoundException.php', |
|
146 | + 'Auth\Service\ForgotPassword' => __DIR__.'/Auth/Service/ForgotPassword.php', |
|
147 | + 'Auth\Service\GotoResetPassword' => __DIR__.'/Auth/Service/GotoResetPassword.php', |
|
148 | + 'Auth\Service\Register' => __DIR__.'/Auth/Service/Register.php', |
|
149 | + 'Auth\Service\RegisterConfirmation' => __DIR__.'/Auth/Service/RegisterConfirmation.php', |
|
150 | + 'Auth\Service\UserUniqueTokenGenerator' => __DIR__.'/Auth/Service/UserUniqueTokenGenerator.php', |
|
151 | + 'Auth\View\Helper\Auth' => __DIR__.'/Auth/View/Helper/Auth.php', |
|
152 | + 'Auth\View\Helper\BuildReferer' => __DIR__.'/Auth/View/Helper/BuildReferer.php', |
|
153 | + 'Auth\View\Helper\LoginInfo' => __DIR__.'/Auth/View/Helper/LoginInfo.php', |
|
154 | + 'Auth\View\Helper\StripQueryParams' => __DIR__.'/Auth/View/Helper/StripQueryParams.php', |
|
155 | + 'Auth\View\InjectLoginInfoListener' => __DIR__.'/Auth/View/InjectLoginInfoListener.php', |
|
156 | 156 | ); |