@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function matchUri($uri) |
86 | 86 | { |
87 | - $pattern = '#^' . preg_quote($this->options->getUriPath(), '#') . '/[0-9a-z]/[0-9a-z]/([0-9a-z]+)\.[a-zA-Z]{3,4}$#'; |
|
87 | + $pattern = '#^'.preg_quote($this->options->getUriPath(), '#').'/[0-9a-z]/[0-9a-z]/([0-9a-z]+)\.[a-zA-Z]{3,4}$#'; |
|
88 | 88 | $matches = []; |
89 | 89 | preg_match($pattern, $uri, $matches); |
90 | 90 | |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | { |
121 | 121 | $dir = rtrim($dir, '/\\'); |
122 | 122 | |
123 | - if (! is_dir($dir)) { |
|
123 | + if (!is_dir($dir)) { |
|
124 | 124 | $this->createDirectoryRecursively(dirname($dir)); |
125 | 125 | |
126 | 126 | $oldUmask = umask(0); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function getSubscribedEvents() |
50 | 50 | { |
51 | - if (! $this->manager->isEnabled()) { |
|
51 | + if (!$this->manager->isEnabled()) { |
|
52 | 52 | return []; |
53 | 53 | } |
54 | 54 | |
@@ -66,19 +66,19 @@ discard block |
||
66 | 66 | $organization = $eventArgs->getDocument(); |
67 | 67 | |
68 | 68 | // check for a organization instance |
69 | - if (! $organization instanceof Organization) { |
|
69 | + if (!$organization instanceof Organization) { |
|
70 | 70 | return; |
71 | 71 | } |
72 | 72 | |
73 | 73 | // check if the image has been changed |
74 | - if (! $eventArgs->hasChangedField('image')) { |
|
74 | + if (!$eventArgs->hasChangedField('image')) { |
|
75 | 75 | return; |
76 | 76 | } |
77 | 77 | |
78 | 78 | $image = $eventArgs->getOldValue('image'); |
79 | 79 | |
80 | 80 | // check if any image existed |
81 | - if (! $image instanceof OrganizationImage) { |
|
81 | + if (!$image instanceof OrganizationImage) { |
|
82 | 82 | return; |
83 | 83 | } |
84 | 84 |
@@ -66,7 +66,7 @@ |
||
66 | 66 | // try get image from repository |
67 | 67 | $image = $this->repository->find($id); |
68 | 68 | |
69 | - if (! $image) { |
|
69 | + if (!$image) { |
|
70 | 70 | // abort if image does not exist |
71 | 71 | return; |
72 | 72 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | public function indexAction() |
80 | 80 | { |
81 | 81 | $result = $this->pagination([ |
82 | - 'params' => ['Organizations_Profile',[ |
|
82 | + 'params' => ['Organizations_Profile', [ |
|
83 | 83 | 'q', |
84 | 84 | 'count' => $this->options['count'], |
85 | 85 | 'page' => 1, |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | |
136 | 136 | $result = $this->pagination([ |
137 | 137 | 'params' => [ |
138 | - 'Organization_Jobs',[ |
|
138 | + 'Organization_Jobs', [ |
|
139 | 139 | 'q', |
140 | 140 | 'organization_id' => $id, |
141 | 141 | 'count' => $this->options['count'], |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | /* @var \Zend\Paginator\Paginator $paginator */ |
155 | 155 | $paginator = $result['jobs']; |
156 | 156 | $count = $paginator->getTotalItemCount(); |
157 | - if (0===$count) { |
|
157 | + if (0 === $count) { |
|
158 | 158 | return $this->disabledProfileViewModel($organization); |
159 | 159 | } |
160 | 160 | } |
@@ -127,7 +127,7 @@ |
||
127 | 127 | |
128 | 128 | public function process($token, $organizationId) |
129 | 129 | { |
130 | - $organizationRepository = $this->getOrganizationRepository(); |
|
130 | + $organizationRepository = $this->getOrganizationRepository(); |
|
131 | 131 | $organization = $organizationRepository->find($organizationId); /* @var $organization \Organizations\Entity\OrganizationInterface */ |
132 | 132 | |
133 | 133 | if (!$organization) { |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | |
48 | 48 | public function __construct(RepositoryService $repositoryService, AuthenticationService $auth, Acl $acl) |
49 | 49 | { |
50 | - $this->repositoryService=$repositoryService; |
|
51 | - $this->auth=$auth; |
|
52 | - $this->acl=$acl; |
|
50 | + $this->repositoryService = $repositoryService; |
|
51 | + $this->auth = $auth; |
|
52 | + $this->acl = $acl; |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | public function __invoke() |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | */ |
69 | 69 | public function process(Params $params, $allowDraft = true) |
70 | 70 | { |
71 | - $repositories = $this->repositoryService; |
|
71 | + $repositories = $this->repositoryService; |
|
72 | 72 | /* @var \Organizations\Repository\Organization $organizationRepository */ |
73 | 73 | $organizationRepository = $this->repositoryService->get('Organizations/Organization'); |
74 | 74 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $user = $this->auth->getUser(); /* @var $user \Auth\Entity\UserInterface */ |
78 | 78 | |
79 | 79 | /* @var $organizationId string */ |
80 | - $organizationId = empty($idFromRoute)?$idFromSubForm:$idFromRoute; |
|
80 | + $organizationId = empty($idFromRoute) ? $idFromSubForm : $idFromRoute; |
|
81 | 81 | |
82 | 82 | $editOwnOrganization = '__my__' === $organizationId; |
83 | 83 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | return $organization; |
112 | 112 | } |
113 | 113 | |
114 | - $organization = $organizationRepository->find($organizationId); |
|
114 | + $organization = $organizationRepository->find($organizationId); |
|
115 | 115 | if (!$organization) { |
116 | 116 | throw new NotFoundException($organizationId); |
117 | 117 | } |
@@ -310,9 +310,9 @@ |
||
310 | 310 | if (!$user) { |
311 | 311 | $user = $repository->create(); |
312 | 312 | $user->setEmail($email) |
313 | - ->setLogin($email) |
|
314 | - ->setRole(\Auth\Entity\User::ROLE_RECRUITER) |
|
315 | - ->setIsDraft(true); |
|
313 | + ->setLogin($email) |
|
314 | + ->setRole(\Auth\Entity\User::ROLE_RECRUITER) |
|
315 | + ->setIsDraft(true); |
|
316 | 316 | $info = $user->getInfo(); |
317 | 317 | /* @var $info \Auth\Entity\InfoInterface */ |
318 | 318 | $info->setEmail($email); |
@@ -42,7 +42,7 @@ |
||
42 | 42 | $services = $application->getServiceManager(); |
43 | 43 | |
44 | 44 | $services->get('Install/Listener/LanguageSetter') |
45 | - ->attach($eventManager); |
|
45 | + ->attach($eventManager); |
|
46 | 46 | |
47 | 47 | // start tracy debugging |
48 | 48 | $services->get('Tracy')->startDebug(); |
@@ -23,7 +23,7 @@ |
||
23 | 23 | { |
24 | 24 | public function getConfig() |
25 | 25 | { |
26 | - return include __DIR__ . '/../config/module.config.php'; |
|
26 | + return include __DIR__.'/../config/module.config.php'; |
|
27 | 27 | } |
28 | 28 | |
29 | 29 |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * for multiple paths. |
23 | 23 | * example https://github.com/doctrine/DoctrineORMModule |
24 | 24 | */ |
25 | - 'paths' => [ __DIR__ . '/../src/Entity'], |
|
25 | + 'paths' => [__DIR__.'/../src/Entity'], |
|
26 | 26 | ], |
27 | 27 | ], |
28 | 28 | 'eventmanager' => [ |
@@ -35,8 +35,8 @@ discard block |
||
35 | 35 | ], |
36 | 36 | |
37 | 37 | 'options' => [ |
38 | - 'Jobs/JobboardSearchOptions' => [ 'class' => '\Jobs\Options\JobboardSearchOptions' ], |
|
39 | - 'Jobs/BaseFieldsetOptions' => [ 'class' => '\Jobs\Options\BaseFieldsetOptions' ], |
|
38 | + 'Jobs/JobboardSearchOptions' => ['class' => '\Jobs\Options\JobboardSearchOptions'], |
|
39 | + 'Jobs/BaseFieldsetOptions' => ['class' => '\Jobs\Options\BaseFieldsetOptions'], |
|
40 | 40 | ], |
41 | 41 | |
42 | 42 | 'Jobs' => [ |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | 'translation_file_patterns' => [ |
59 | 59 | [ |
60 | 60 | 'type' => 'gettext', |
61 | - 'base_dir' => __DIR__ . '/../language', |
|
61 | + 'base_dir' => __DIR__.'/../language', |
|
62 | 62 | 'pattern' => '%s.mo', |
63 | 63 | ], |
64 | 64 | ], |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | 'Jobboard', |
99 | 99 | 'Jobs/Jobboard', |
100 | 100 | 'Jobs/ApiJobListByChannel', |
101 | - 'Jobs/Template' => [ 'view', 'edittemplate' ], |
|
101 | + 'Jobs/Template' => ['view', 'edittemplate'], |
|
102 | 102 | 'Jobs/Manage' => [ |
103 | 103 | 'template', |
104 | 104 | ], |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | 'Jobs/Listener/AdminWidgetProvider' => 'Jobs\Factory\Listener\AdminWidgetProviderFactory', |
227 | 227 | 'Jobs/ViewModelTemplateFilter' => 'Jobs\Factory\Filter\ViewModelTemplateFilterFactory', |
228 | 228 | 'Jobs\Model\ApiJobDehydrator' => 'Jobs\Factory\Model\ApiJobDehydratorFactory', |
229 | - 'Jobs/Listener/Publisher' => [Publisher::class,'factory'], |
|
229 | + 'Jobs/Listener/Publisher' => [Publisher::class, 'factory'], |
|
230 | 230 | 'Jobs/PreviewLinkHydrator' => 'Jobs\Form\Hydrator\PreviewLinkHydrator::factory', |
231 | 231 | 'Jobs\Auth\Dependency\ListListener' => 'Jobs\Factory\Auth\Dependency\ListListenerFactory', |
232 | 232 | 'Jobs/DefaultCategoriesBuilder' => 'Jobs\Factory\Repository\DefaultCategoriesBuilderFactory', |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | |
244 | 244 | |
245 | 245 | 'event_manager' => [ |
246 | - 'Core/AdminController/Events' => [ 'listeners' => [ |
|
246 | + 'Core/AdminController/Events' => ['listeners' => [ |
|
247 | 247 | 'Jobs/Listener/AdminWidgetProvider' => \Core\Controller\AdminControllerEvent::EVENT_DASHBOARD, |
248 | 248 | ]], |
249 | 249 | |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | 'Core/Ajax/Events' => ['listeners' => [ |
267 | 267 | \Jobs\Listener\DeleteJob::class => ['jobs.delete', true], |
268 | 268 | \Jobs\Listener\GetOrganizationManagers::class => ['jobs.manager-select', true], |
269 | - \Jobs\Listener\LoadActiveOrganizations::class => [ 'jobs.admin.activeorganizations', true], |
|
269 | + \Jobs\Listener\LoadActiveOrganizations::class => ['jobs.admin.activeorganizations', true], |
|
270 | 270 | |
271 | 271 | ]], |
272 | 272 | |
@@ -292,10 +292,10 @@ discard block |
||
292 | 292 | 'Jobs/ApiJobListByChannel' => 'Jobs\Controller\ApiJobListByChannelController', |
293 | 293 | ], |
294 | 294 | 'factories' => [ |
295 | - 'Jobs/Import' => [ Controller\ImportController::class, 'factory'], |
|
296 | - 'Jobs/Console' => [ConsoleController::class,'factory'], |
|
297 | - 'Jobs/AdminCategories' => [AdminCategoriesController::class,'factory'], |
|
298 | - 'Jobs/Admin' => [AdminController::class,'factory'], |
|
295 | + 'Jobs/Import' => [Controller\ImportController::class, 'factory'], |
|
296 | + 'Jobs/Console' => [ConsoleController::class, 'factory'], |
|
297 | + 'Jobs/AdminCategories' => [AdminCategoriesController::class, 'factory'], |
|
298 | + 'Jobs/Admin' => [AdminController::class, 'factory'], |
|
299 | 299 | 'Jobs/Template' => 'Jobs\Factory\Controller\TemplateControllerFactory', |
300 | 300 | 'Jobs/Index' => 'Jobs\Factory\Controller\IndexControllerFactory', |
301 | 301 | 'Jobs/Approval' => 'Jobs\Factory\Controller\ApprovalControllerFactory', |
@@ -328,41 +328,41 @@ discard block |
||
328 | 328 | 'view_manager' => [ |
329 | 329 | // Map template to files. Speeds up the lookup through the template stack. |
330 | 330 | 'template_map' => [ |
331 | - 'jobs/form/list-filter' => __DIR__ . '/../view/form/list-filter.phtml', |
|
332 | - 'jobs/form/apply-identifier' => __DIR__ . '/../view/form/apply-identifier.phtml', |
|
333 | - 'jobs/form/hiring-organization-select' => __DIR__ . '/../view/form/hiring-organization-select.phtml', |
|
334 | - 'jobs/form/multiposting-select' => __DIR__ . '/../view/form/multiposting-select.phtml', |
|
335 | - 'jobs/form/multiposting-checkboxes' => __DIR__ . '/../view/form/multiposting-checkboxes.phtml', |
|
336 | - 'jobs/form/ats-mode.view' => __DIR__ . '/../view/form/ats-mode.view.phtml', |
|
337 | - 'jobs/form/ats-mode.form' => __DIR__ . '/../view/form/ats-mode.form.phtml', |
|
338 | - 'jobs/form/company-name-fieldset' => __DIR__ . '/../view/form/company-name-fieldset.phtml', |
|
339 | - 'jobs/form/preview' => __DIR__ . '/../view/form/preview.phtml', |
|
340 | - 'jobs/form/customer-note' => __DIR__ . '/../view/form/customer-note.phtml', |
|
341 | - 'jobs/partials/channel-list' => __DIR__ . '/../view/partials/channel-list.phtml', |
|
342 | - 'jobs/assign-user' => __DIR__ . '/../view/jobs/manage/assign-user.phtml', |
|
343 | - 'jobs/snapshot_or_preview' => __DIR__ . '/../view/partials/snapshot_or_preview.phtml', |
|
344 | - 'jobs/history' => __DIR__ . '/../view/partials/history.phtml', |
|
345 | - 'jobs/portalsummary' => __DIR__ . '/../view/partials/portalsummary.phtml', |
|
346 | - 'content/jobs-publish-on-yawik' => __DIR__ . '/../view/modals/yawik.phtml', |
|
347 | - 'content/jobs-publish-on-jobsintown' => __DIR__ . '/../view/modals/jobsintown.phtml', |
|
348 | - 'content/jobs-publish-on-homepage' => __DIR__ . '/../view/modals/homepage.phtml', |
|
349 | - 'content/jobs-publish-on-fazjob' => __DIR__ . '/../view/modals/fazjob.phtml', |
|
350 | - 'content/jobs-terms-and-conditions' => __DIR__ . '/../view/jobs/index/terms.phtml', |
|
351 | - 'mail/job-created' => __DIR__ . '/../view/mails/job-created.phtml', |
|
352 | - 'mail/job-pending' => __DIR__ . '/../view/mails/job-pending.phtml', |
|
353 | - 'mail/job-accepted' => __DIR__ . '/../view/mails/job-accepted.phtml', |
|
354 | - 'mail/job-rejected' => __DIR__ . '/../view/mails/job-rejected.phtml', |
|
355 | - 'mail/job-created.en' => __DIR__ . '/../view/mails/job-created.en.phtml', |
|
356 | - 'mail/job-pending.en' => __DIR__ . '/../view/mails/job-pending.en.phtml', |
|
357 | - 'mail/job-accepted.en' => __DIR__ . '/../view/mails/job-accepted.en.phtml', |
|
358 | - 'mail/job-rejected.en' => __DIR__ . '/../view/mails/job-rejected.en.phtml', |
|
359 | - 'jobs/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml', |
|
360 | - 'jobs/error/expired' => __DIR__ . '/../view/error/expired.phtml', |
|
331 | + 'jobs/form/list-filter' => __DIR__.'/../view/form/list-filter.phtml', |
|
332 | + 'jobs/form/apply-identifier' => __DIR__.'/../view/form/apply-identifier.phtml', |
|
333 | + 'jobs/form/hiring-organization-select' => __DIR__.'/../view/form/hiring-organization-select.phtml', |
|
334 | + 'jobs/form/multiposting-select' => __DIR__.'/../view/form/multiposting-select.phtml', |
|
335 | + 'jobs/form/multiposting-checkboxes' => __DIR__.'/../view/form/multiposting-checkboxes.phtml', |
|
336 | + 'jobs/form/ats-mode.view' => __DIR__.'/../view/form/ats-mode.view.phtml', |
|
337 | + 'jobs/form/ats-mode.form' => __DIR__.'/../view/form/ats-mode.form.phtml', |
|
338 | + 'jobs/form/company-name-fieldset' => __DIR__.'/../view/form/company-name-fieldset.phtml', |
|
339 | + 'jobs/form/preview' => __DIR__.'/../view/form/preview.phtml', |
|
340 | + 'jobs/form/customer-note' => __DIR__.'/../view/form/customer-note.phtml', |
|
341 | + 'jobs/partials/channel-list' => __DIR__.'/../view/partials/channel-list.phtml', |
|
342 | + 'jobs/assign-user' => __DIR__.'/../view/jobs/manage/assign-user.phtml', |
|
343 | + 'jobs/snapshot_or_preview' => __DIR__.'/../view/partials/snapshot_or_preview.phtml', |
|
344 | + 'jobs/history' => __DIR__.'/../view/partials/history.phtml', |
|
345 | + 'jobs/portalsummary' => __DIR__.'/../view/partials/portalsummary.phtml', |
|
346 | + 'content/jobs-publish-on-yawik' => __DIR__.'/../view/modals/yawik.phtml', |
|
347 | + 'content/jobs-publish-on-jobsintown' => __DIR__.'/../view/modals/jobsintown.phtml', |
|
348 | + 'content/jobs-publish-on-homepage' => __DIR__.'/../view/modals/homepage.phtml', |
|
349 | + 'content/jobs-publish-on-fazjob' => __DIR__.'/../view/modals/fazjob.phtml', |
|
350 | + 'content/jobs-terms-and-conditions' => __DIR__.'/../view/jobs/index/terms.phtml', |
|
351 | + 'mail/job-created' => __DIR__.'/../view/mails/job-created.phtml', |
|
352 | + 'mail/job-pending' => __DIR__.'/../view/mails/job-pending.phtml', |
|
353 | + 'mail/job-accepted' => __DIR__.'/../view/mails/job-accepted.phtml', |
|
354 | + 'mail/job-rejected' => __DIR__.'/../view/mails/job-rejected.phtml', |
|
355 | + 'mail/job-created.en' => __DIR__.'/../view/mails/job-created.en.phtml', |
|
356 | + 'mail/job-pending.en' => __DIR__.'/../view/mails/job-pending.en.phtml', |
|
357 | + 'mail/job-accepted.en' => __DIR__.'/../view/mails/job-accepted.en.phtml', |
|
358 | + 'mail/job-rejected.en' => __DIR__.'/../view/mails/job-rejected.en.phtml', |
|
359 | + 'jobs/error/no-parent' => __DIR__.'/../view/error/no-parent.phtml', |
|
360 | + 'jobs/error/expired' => __DIR__.'/../view/error/expired.phtml', |
|
361 | 361 | ], |
362 | 362 | |
363 | 363 | // Where to look for view templates not mapped above |
364 | 364 | 'template_path_stack' => [ |
365 | - __DIR__ . '/../view', |
|
365 | + __DIR__.'/../view', |
|
366 | 366 | ], |
367 | 367 | ], |
368 | 368 |