@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | { |
202 | 202 | $id = 'someId'; |
203 | 203 | $ext = 'ext'; |
204 | - $name = 'filename.' . $ext; |
|
204 | + $name = 'filename.'.$ext; |
|
205 | 205 | $path = sprintf('d/I/%s.%s', $id, $ext); |
206 | 206 | $resource = 'someResource'; |
207 | 207 | |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | */ |
239 | 239 | public function testMatchUri($uri, $expected) |
240 | 240 | { |
241 | - $this->assertSame($expected, $this->manager->matchUri($this->options->getUriPath() . $uri)); |
|
241 | + $this->assertSame($expected, $this->manager->matchUri($this->options->getUriPath().$uri)); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | /** |
@@ -66,14 +66,14 @@ discard block |
||
66 | 66 | 'view_manager' => [ |
67 | 67 | // Map template to files. Speeds up the lookup through the template stack. |
68 | 68 | 'template_map' => [ |
69 | - 'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml', |
|
70 | - 'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml', |
|
71 | - 'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml', |
|
72 | - 'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml', |
|
73 | - 'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml', |
|
74 | - 'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml', |
|
75 | - 'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml', |
|
76 | - 'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml', |
|
69 | + 'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml', |
|
70 | + 'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml', |
|
71 | + 'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml', |
|
72 | + 'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml', |
|
73 | + 'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml', |
|
74 | + 'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml', |
|
75 | + 'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml', |
|
76 | + 'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml', |
|
77 | 77 | 'organizations/profile/disabled' => __DIR__ . '/../view/organizations/profile/disabled.phtml', |
78 | 78 | ], |
79 | 79 | // Where to look for view templates not mapped above |
@@ -83,21 +83,21 @@ discard block |
||
83 | 83 | ], |
84 | 84 | 'form_elements' => [ |
85 | 85 | 'invokables' => [ |
86 | - 'Organizations/Form' => 'Organizations\Form\Organizations', |
|
87 | - 'Organizations/OrganizationsContactForm' => 'Organizations\Form\OrganizationsContactForm', |
|
88 | - 'Organizations/OrganizationsNameForm' => 'Organizations\Form\OrganizationsNameForm', |
|
89 | - 'Organizations/OrganizationsDescriptionForm' => 'Organizations\Form\OrganizationsDescriptionForm', |
|
90 | - 'Organizations/OrganizationsContactFieldset' => 'Organizations\Form\OrganizationsContactFieldset', |
|
91 | - 'Organizations/OrganizationsDescriptionFieldset' => 'Organizations\Form\OrganizationsDescriptionFieldset', |
|
92 | - //'Organizations/OrganizationFieldset' => 'Organizations\Form\OrganizationFieldset', |
|
93 | - 'Organizations/EmployeesContainer' => 'Organizations\Form\EmployeesContainer', |
|
94 | - 'Organizations/Employees' => 'Organizations\Form\Employees', |
|
95 | - 'Organizations/InviteEmployeeBar' => 'Organizations\Form\Element\InviteEmployeeBar', |
|
96 | - 'Organizations/Employee' => 'Organizations\Form\Element\Employee', |
|
97 | - 'Organizations/WorkflowSettings' => 'Organizations\Form\WorkflowSettings', |
|
98 | - 'Organizations/WorkflowSettingsFieldset' => 'Organizations\Form\WorkflowSettingsFieldset', |
|
99 | - 'Organizations/Profile' => \Organizations\Form\OrganizationsProfileForm::class, |
|
100 | - 'Organizations/ProfileFieldset' => \Organizations\Form\OrganizationsProfileFieldset::class |
|
86 | + 'Organizations/Form' => 'Organizations\Form\Organizations', |
|
87 | + 'Organizations/OrganizationsContactForm' => 'Organizations\Form\OrganizationsContactForm', |
|
88 | + 'Organizations/OrganizationsNameForm' => 'Organizations\Form\OrganizationsNameForm', |
|
89 | + 'Organizations/OrganizationsDescriptionForm' => 'Organizations\Form\OrganizationsDescriptionForm', |
|
90 | + 'Organizations/OrganizationsContactFieldset' => 'Organizations\Form\OrganizationsContactFieldset', |
|
91 | + 'Organizations/OrganizationsDescriptionFieldset' => 'Organizations\Form\OrganizationsDescriptionFieldset', |
|
92 | + //'Organizations/OrganizationFieldset' => 'Organizations\Form\OrganizationFieldset', |
|
93 | + 'Organizations/EmployeesContainer' => 'Organizations\Form\EmployeesContainer', |
|
94 | + 'Organizations/Employees' => 'Organizations\Form\Employees', |
|
95 | + 'Organizations/InviteEmployeeBar' => 'Organizations\Form\Element\InviteEmployeeBar', |
|
96 | + 'Organizations/Employee' => 'Organizations\Form\Element\Employee', |
|
97 | + 'Organizations/WorkflowSettings' => 'Organizations\Form\WorkflowSettings', |
|
98 | + 'Organizations/WorkflowSettingsFieldset' => 'Organizations\Form\WorkflowSettingsFieldset', |
|
99 | + 'Organizations/Profile' => \Organizations\Form\OrganizationsProfileForm::class, |
|
100 | + 'Organizations/ProfileFieldset' => \Organizations\Form\OrganizationsProfileFieldset::class |
|
101 | 101 | ], |
102 | 102 | 'factories' => [ |
103 | 103 | 'Organizations/OrganizationsNameFieldset' => \Organizations\Factory\Form\OrganizationsNameFieldsetFactory::class, |
@@ -212,13 +212,13 @@ discard block |
||
212 | 212 | |
213 | 213 | 'service_manager' => [ |
214 | 214 | 'invokables' => [ |
215 | - 'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener' |
|
215 | + 'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener' |
|
216 | 216 | ], |
217 | 217 | 'factories' => [ |
218 | - 'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory', |
|
219 | - 'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory', |
|
220 | - 'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory', |
|
221 | - 'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory', |
|
218 | + 'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory', |
|
219 | + 'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory', |
|
220 | + 'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory', |
|
221 | + 'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory', |
|
222 | 222 | \Organizations\Service\UploadHandler::class => [\Organizations\Service\UploadHandler::class, 'factory'], |
223 | 223 | ], |
224 | 224 | ], |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | try { |
144 | 144 | /* @var $handler \Organizations\Controller\Plugin\GetOrganizationHandler */ |
145 | 145 | $handler = $this->plugin('Organizations/GetOrganizationHandler'); |
146 | - $org = $handler->process($this->params(), true); |
|
146 | + $org = $handler->process($this->params(), true); |
|
147 | 147 | } catch (MissingParentOrganizationException $e) { |
148 | 148 | return $this->getErrorViewModel('no-parent'); |
149 | 149 | } catch (NotFoundException $e) { |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | ]; |
155 | 155 | } |
156 | 156 | |
157 | - $container = $this->getFormular($org); |
|
157 | + $container = $this->getFormular($org); |
|
158 | 158 | |
159 | 159 | if (isset($formIdentifier) && $request->isPost()) { |
160 | 160 | /* @var $form \Laminas\Form\FormInterface */ |
@@ -180,10 +180,10 @@ discard block |
||
180 | 180 | $form = $container->get($formIdentifier); |
181 | 181 | $form->setData(array_merge($postData, $filesData)); |
182 | 182 | if (!isset($form)) { |
183 | - throw new \RuntimeException('No form found for "' . $formIdentifier . '"'); |
|
183 | + throw new \RuntimeException('No form found for "'.$formIdentifier.'"'); |
|
184 | 184 | } |
185 | 185 | |
186 | - if('organizationLogo' == $formIdentifier){ |
|
186 | + if ('organizationLogo' == $formIdentifier) { |
|
187 | 187 | return $this->handleLogoUpload($form, $filesData); |
188 | 188 | } |
189 | 189 |
@@ -49,17 +49,17 @@ discard block |
||
49 | 49 | /** |
50 | 50 | * Always enabled even if there are no active jobs |
51 | 51 | */ |
52 | - const PROFILE_ALWAYS_ENABLE = 'always'; |
|
52 | + const PROFILE_ALWAYS_ENABLE = 'always'; |
|
53 | 53 | |
54 | 54 | /** |
55 | 55 | * Hide if there are no jobs available |
56 | 56 | */ |
57 | - const PROFILE_ACTIVE_JOBS = 'active-jobs'; |
|
57 | + const PROFILE_ACTIVE_JOBS = 'active-jobs'; |
|
58 | 58 | |
59 | 59 | /** |
60 | 60 | * Always disabled profile |
61 | 61 | */ |
62 | - const PROFILE_DISABLED = 'disabled'; |
|
62 | + const PROFILE_DISABLED = 'disabled'; |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * Event name of post construct event. |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | */ |
318 | 318 | public function getParent($returnSelf = false) |
319 | 319 | { |
320 | - return $this->parent ? : ($returnSelf ? $this : null); |
|
320 | + return $this->parent ?: ($returnSelf ? $this : null); |
|
321 | 321 | } |
322 | 322 | |
323 | 323 | /** |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | */ |
549 | 549 | public function getPermissionsResourceId() |
550 | 550 | { |
551 | - return 'organization:' . $this->getId(); |
|
551 | + return 'organization:'.$this->getId(); |
|
552 | 552 | } |
553 | 553 | |
554 | 554 | /** |
@@ -614,7 +614,7 @@ discard block |
||
614 | 614 | */ |
615 | 615 | public function getImages(): ?ImageSetInterface |
616 | 616 | { |
617 | - if(is_null($this->images)){ |
|
617 | + if (is_null($this->images)) { |
|
618 | 618 | $this->images = new ImageSet(); |
619 | 619 | } |
620 | 620 | return $this->images; |
@@ -32,9 +32,9 @@ |
||
32 | 32 | |
33 | 33 | public function getUri(): string |
34 | 34 | { |
35 | - $id = (string)$this->id; |
|
36 | - $name = (string)$this->name; |
|
37 | - return '/'.trim('file/Organizations.OrganizationImage/' . $id . "/" . urlencode($name), '/'); |
|
35 | + $id = (string) $this->id; |
|
36 | + $name = (string) $this->name; |
|
37 | + return '/'.trim('file/Organizations.OrganizationImage/'.$id."/".urlencode($name), '/'); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | } |
41 | 41 | \ No newline at end of file |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | * @param bool $persist |
201 | 201 | * @return \Organizations\Entity\Organization |
202 | 202 | */ |
203 | - public function create(array $data = null, $persist=false) |
|
203 | + public function create(array $data = null, $persist = false) |
|
204 | 204 | { |
205 | 205 | $entity = parent::create($data); |
206 | 206 | $entity->isDraft(true); |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | $qb->limit($limit); |
269 | 269 | } |
270 | 270 | |
271 | - if($execute){ |
|
271 | + if ($execute) { |
|
272 | 272 | return $qb->getQuery()->execute(); |
273 | 273 | } |
274 | 274 | return $qb; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | public function getUri(?OrganizationImage $image) |
46 | 46 | { |
47 | - if(is_null($image)){ |
|
47 | + if (is_null($image)) { |
|
48 | 48 | return null; |
49 | 49 | } |
50 | 50 | if ($this->options->getEnabled()) { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | */ |
94 | 94 | public function matchUri($uri) |
95 | 95 | { |
96 | - $pattern = '#^' . preg_quote($this->options->getUriPath(), '#') . '/[0-9a-z]/[0-9a-z]/([0-9a-z]+)\.[a-zA-Z]{3,4}$#'; |
|
96 | + $pattern = '#^'.preg_quote($this->options->getUriPath(), '#').'/[0-9a-z]/[0-9a-z]/([0-9a-z]+)\.[a-zA-Z]{3,4}$#'; |
|
97 | 97 | $matches = []; |
98 | 98 | preg_match($pattern, $uri, $matches); |
99 | 99 | |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | { |
151 | 151 | $dir = rtrim($dir, '/\\'); |
152 | 152 | |
153 | - if (! is_dir($dir)) { |
|
153 | + if (!is_dir($dir)) { |
|
154 | 154 | $this->createDirectoryRecursively(dirname($dir)); |
155 | 155 | |
156 | 156 | $oldUmask = umask(0); |
@@ -75,7 +75,7 @@ |
||
75 | 75 | /* @var OrganizationImage $image */ |
76 | 76 | $image = $fileManager->findByID(OrganizationImage::class, $id); |
77 | 77 | |
78 | - if (! $image) { |
|
78 | + if (!$image) { |
|
79 | 79 | // abort if image does not exist |
80 | 80 | return; |
81 | 81 | } |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | $LINKEDIN_APP_SECRET = getenv('LINKEDIN_APP_SECRET'); |
7 | 7 | |
8 | 8 | return array( |
9 | - 'hybridauth' => array( |
|
9 | + 'hybridauth' => array( |
|
10 | 10 | "Facebook" => array ( |
11 | 11 | "enabled" => true, |
12 | 12 | "keys" => array ( "id" => $FACEBOOK_APP_ID, "secret" => $FACEBOOK_APP_SECRET ), |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | "scope" => '' |
31 | 31 | ), |
32 | 32 | "Google" => array( |
33 | - // see http://hybridauth.sourceforge.net/userguide/IDProvider_info_Google.html |
|
34 | - "enabled" => false, |
|
35 | - 'keys' => array ( "id" => '###Your Google Client-ID ###', 'secret' => '###Your GitHub Secret###'), |
|
36 | - "scope" => "https://www.googleapis.com/auth/userinfo.profile ". // optional |
|
37 | - "https://www.googleapis.com/auth/userinfo.email" , // optional |
|
38 | - "access_type" => "offline", // optional |
|
39 | - "approval_prompt" => "force", // optional |
|
33 | + // see http://hybridauth.sourceforge.net/userguide/IDProvider_info_Google.html |
|
34 | + "enabled" => false, |
|
35 | + 'keys' => array ( "id" => '###Your Google Client-ID ###', 'secret' => '###Your GitHub Secret###'), |
|
36 | + "scope" => "https://www.googleapis.com/auth/userinfo.profile ". // optional |
|
37 | + "https://www.googleapis.com/auth/userinfo.email" , // optional |
|
38 | + "access_type" => "offline", // optional |
|
39 | + "approval_prompt" => "force", // optional |
|
40 | 40 | ), |
41 | 41 | |
42 | 42 | |
@@ -47,12 +47,12 @@ discard block |
||
47 | 47 | ), |
48 | 48 | |
49 | 49 | 'Auth' => array( |
50 | - 'first_login' => array ( |
|
51 | - 'role' => '%%role%%', // role set on the first login. |
|
52 | - 'auth_suffix' => '%%auth.suffix%%', // an auth suffix is needed, if you plan to add external apps. |
|
53 | - ), |
|
54 | - // this allows an external application to use the YAWIK API |
|
55 | - // applications[USERPOSTFIX] => AppKey |
|
50 | + 'first_login' => array ( |
|
51 | + 'role' => '%%role%%', // role set on the first login. |
|
52 | + 'auth_suffix' => '%%auth.suffix%%', // an auth suffix is needed, if you plan to add external apps. |
|
53 | + ), |
|
54 | + // this allows an external application to use the YAWIK API |
|
55 | + // applications[USERPOSTFIX] => AppKey |
|
56 | 56 | 'external_applications' => array( |
57 | 57 | '%%external.app.prefix%%' => '%%external.app.key%%', |
58 | 58 | ), |
@@ -7,36 +7,36 @@ discard block |
||
7 | 7 | |
8 | 8 | return array( |
9 | 9 | 'hybridauth' => array( |
10 | - "Facebook" => array ( |
|
10 | + "Facebook" => array( |
|
11 | 11 | "enabled" => true, |
12 | - "keys" => array ( "id" => $FACEBOOK_APP_ID, "secret" => $FACEBOOK_APP_SECRET ), |
|
13 | - "scope" => "email, user_about_me, user_birthday, user_hometown, user_work_history, user_education_history",// optional |
|
12 | + "keys" => array("id" => $FACEBOOK_APP_ID, "secret" => $FACEBOOK_APP_SECRET), |
|
13 | + "scope" => "email, user_about_me, user_birthday, user_hometown, user_work_history, user_education_history", // optional |
|
14 | 14 | "display" => "popup" |
15 | 15 | |
16 | 16 | ), |
17 | - "LinkedIn" => array ( |
|
17 | + "LinkedIn" => array( |
|
18 | 18 | "enabled" => true, |
19 | - "keys" => array ( "id" => $LINKEDIN_APP_ID, "secret" => $LINKEDIN_APP_SECRET ), |
|
19 | + "keys" => array("id" => $LINKEDIN_APP_ID, "secret" => $LINKEDIN_APP_SECRET), |
|
20 | 20 | "scope" => "r_basicprofile,r_emailaddress" |
21 | 21 | ), |
22 | 22 | "XING" => array( |
23 | 23 | "enabled" => false, |
24 | - 'keys' => array ( "key" => '###XING APP KEY###', 'secret' => '### XING APP SECRET ###'), |
|
24 | + 'keys' => array("key" => '###XING APP KEY###', 'secret' => '### XING APP SECRET ###'), |
|
25 | 25 | "scope" => '' |
26 | 26 | ), |
27 | 27 | "Github" => array( |
28 | 28 | "enabled" => false, |
29 | - 'keys' => array ( "id" => '###Your GitHub AppID ###', 'secret' => '###Your GitHub Secret###'), |
|
29 | + 'keys' => array("id" => '###Your GitHub AppID ###', 'secret' => '###Your GitHub Secret###'), |
|
30 | 30 | "scope" => '' |
31 | 31 | ), |
32 | 32 | "Google" => array( |
33 | 33 | // see http://hybridauth.sourceforge.net/userguide/IDProvider_info_Google.html |
34 | 34 | "enabled" => false, |
35 | - 'keys' => array ( "id" => '###Your Google Client-ID ###', 'secret' => '###Your GitHub Secret###'), |
|
36 | - "scope" => "https://www.googleapis.com/auth/userinfo.profile ". // optional |
|
37 | - "https://www.googleapis.com/auth/userinfo.email" , // optional |
|
38 | - "access_type" => "offline", // optional |
|
39 | - "approval_prompt" => "force", // optional |
|
35 | + 'keys' => array("id" => '###Your Google Client-ID ###', 'secret' => '###Your GitHub Secret###'), |
|
36 | + "scope" => "https://www.googleapis.com/auth/userinfo.profile ".// optional |
|
37 | + "https://www.googleapis.com/auth/userinfo.email", // optional |
|
38 | + "access_type" => "offline", // optional |
|
39 | + "approval_prompt" => "force", // optional |
|
40 | 40 | ), |
41 | 41 | |
42 | 42 | |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | ), |
48 | 48 | |
49 | 49 | 'Auth' => array( |
50 | - 'first_login' => array ( |
|
51 | - 'role' => '%%role%%', // role set on the first login. |
|
52 | - 'auth_suffix' => '%%auth.suffix%%', // an auth suffix is needed, if you plan to add external apps. |
|
50 | + 'first_login' => array( |
|
51 | + 'role' => '%%role%%', // role set on the first login. |
|
52 | + 'auth_suffix' => '%%auth.suffix%%', // an auth suffix is needed, if you plan to add external apps. |
|
53 | 53 | ), |
54 | 54 | // this allows an external application to use the YAWIK API |
55 | 55 | // applications[USERPOSTFIX] => AppKey |