@@ -32,6 +32,6 @@ |
||
32 | 32 | ; |
33 | 33 | $translator = $container->get('translator'); |
34 | 34 | $imageFileCacheManager = $container->get('Organizations\ImageFileCache\Manager'); |
35 | - return new ProfileController($repo,$jobRepository,$translator,$imageFileCacheManager); |
|
35 | + return new ProfileController($repo, $jobRepository, $translator, $imageFileCacheManager); |
|
36 | 36 | } |
37 | 37 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | $repo = $this->repo; |
103 | 103 | $id = $this->params('id'); |
104 | 104 | |
105 | - if(is_null($id)){ |
|
105 | + if (is_null($id)) { |
|
106 | 106 | $this->getResponse()->setStatusCode(Response::STATUS_CODE_404); |
107 | 107 | return [ |
108 | 108 | 'message' => $translator->translate('Can not access profile page without id'), |
@@ -111,33 +111,33 @@ discard block |
||
111 | 111 | } |
112 | 112 | |
113 | 113 | $organization = $repo->find($id); |
114 | - if(!$organization instanceof Organization){ |
|
114 | + if (!$organization instanceof Organization) { |
|
115 | 115 | throw new NotFoundException($id); |
116 | 116 | } |
117 | 117 | |
118 | - if( |
|
118 | + if ( |
|
119 | 119 | Organization::PROFILE_DISABLED == $organization->getProfileSetting() |
120 | 120 | || is_null($organization->getProfileSetting()) |
121 | - ){ |
|
121 | + ) { |
|
122 | 122 | throw new UnauthorizedAccessException(/*@translate*/ 'This Organization Profile is disabled'); |
123 | 123 | } |
124 | 124 | |
125 | 125 | $result = $this->pagination([ |
126 | 126 | 'params' => [ |
127 | - 'Organization_Jobs',[ |
|
127 | + 'Organization_Jobs', [ |
|
128 | 128 | 'organization_id' => $organization->getId() |
129 | 129 | ] |
130 | 130 | ], |
131 | - 'paginator' => ['as' => 'jobs','Organizations/ListJob'], |
|
131 | + 'paginator' => ['as' => 'jobs', 'Organizations/ListJob'], |
|
132 | 132 | ]); |
133 | 133 | |
134 | - if( |
|
134 | + if ( |
|
135 | 135 | Organization::PROFILE_ACTIVE_JOBS == $organization->getProfileSetting() |
136 | - ){ |
|
136 | + ) { |
|
137 | 137 | /* @var \Zend\Paginator\Paginator $paginator */ |
138 | 138 | $paginator = $result['jobs']; |
139 | 139 | $count = $paginator->getTotalItemCount(); |
140 | - if(0===$count){ |
|
140 | + if (0 === $count) { |
|
141 | 141 | throw new UnauthorizedAccessException(/*@translate*/ 'This Organization Profile is disabled'); |
142 | 142 | } |
143 | 143 | } |
@@ -47,17 +47,17 @@ discard block |
||
47 | 47 | /** |
48 | 48 | * Always enabled even if there are no active jobs |
49 | 49 | */ |
50 | - const PROFILE_ALWAYS_ENABLE = 'always'; |
|
50 | + const PROFILE_ALWAYS_ENABLE = 'always'; |
|
51 | 51 | |
52 | 52 | /** |
53 | 53 | * Hide if there are no jobs available |
54 | 54 | */ |
55 | - const PROFILE_ACTIVE_JOBS = 'active-jobs'; |
|
55 | + const PROFILE_ACTIVE_JOBS = 'active-jobs'; |
|
56 | 56 | |
57 | 57 | /** |
58 | 58 | * Always disabled profile |
59 | 59 | */ |
60 | - const PROFILE_DISABLED = 'disabled'; |
|
60 | + const PROFILE_DISABLED = 'disabled'; |
|
61 | 61 | |
62 | 62 | /** |
63 | 63 | * Event name of post construct event. |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | */ |
286 | 286 | public function getParent($returnSelf = false) |
287 | 287 | { |
288 | - return $this->parent ? : ($returnSelf ? $this : null); |
|
288 | + return $this->parent ?: ($returnSelf ? $this : null); |
|
289 | 289 | } |
290 | 290 | |
291 | 291 | /** |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | */ |
517 | 517 | public function getPermissionsResourceId() |
518 | 518 | { |
519 | - return 'organization:' . $this->getId(); |
|
519 | + return 'organization:'.$this->getId(); |
|
520 | 520 | } |
521 | 521 | |
522 | 522 | /** |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * |
32 | 32 | * @var String |
33 | 33 | */ |
34 | - protected $repositoryName="Organizations/Organization"; |
|
34 | + protected $repositoryName = "Organizations/Organization"; |
|
35 | 35 | |
36 | 36 | /** |
37 | 37 | * Sortable fields |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @param \Auth\AuthenticationService $auth |
54 | 54 | */ |
55 | - public function __construct($auth,$jobRepository) |
|
55 | + public function __construct($auth, $jobRepository) |
|
56 | 56 | { |
57 | 57 | $this->auth = $auth; |
58 | 58 | $this->jobRepository = $jobRepository; |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $value = $params; |
76 | 76 | } |
77 | 77 | |
78 | - if (isset($params['q']) && $params['q'] && $params['q'] != 'en/organizations/profile' ) { |
|
78 | + if (isset($params['q']) && $params['q'] && $params['q'] != 'en/organizations/profile') { |
|
79 | 79 | $queryBuilder->text($params['q'])->language('none'); |
80 | 80 | } |
81 | 81 | |
@@ -90,14 +90,14 @@ discard block |
||
90 | 90 | |
91 | 91 | $queryBuilder->sort($this->filterSort($value['sort'])); |
92 | 92 | |
93 | - if(isset($params['type']) && $params['type'] === 'profile'){ |
|
93 | + if (isset($params['type']) && $params['type'] === 'profile') { |
|
94 | 94 | //@TODO: we should use aggregate query here |
95 | 95 | $queryBuilder->field('profileSetting') |
96 | - ->in([Organization::PROFILE_ALWAYS_ENABLE,Organization::PROFILE_ACTIVE_JOBS]) |
|
96 | + ->in([Organization::PROFILE_ALWAYS_ENABLE, Organization::PROFILE_ACTIVE_JOBS]) |
|
97 | 97 | ; |
98 | 98 | |
99 | 99 | $filters = $this->getOrganizationProfileFilters($queryBuilder); |
100 | - if(count($filters) > 0){ |
|
100 | + if (count($filters) > 0) { |
|
101 | 101 | $queryBuilder->field('id')->notIn($filters); |
102 | 102 | } |
103 | 103 | |
@@ -117,8 +117,8 @@ discard block |
||
117 | 117 | $results = $queryBuilder->getQuery()->execute(); |
118 | 118 | |
119 | 119 | $filters = []; |
120 | - foreach($results->toArray() as $organization){ |
|
121 | - if($organization->getProfileSetting()==Organization::PROFILE_ACTIVE_JOBS){ |
|
120 | + foreach ($results->toArray() as $organization) { |
|
121 | + if ($organization->getProfileSetting() == Organization::PROFILE_ACTIVE_JOBS) { |
|
122 | 122 | $qb = $jobRepository->createQueryBuilder(); |
123 | 123 | $qb |
124 | 124 | ->field('organization')->equals($organization->getId()) |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | ->field('isDraft')->notEqual(true) |
127 | 127 | ; |
128 | 128 | $count = $qb->getQuery()->execute()->count(); |
129 | - if($count == 0){ |
|
129 | + if ($count == 0) { |
|
130 | 130 | $filters[] = $organization->getId(); |
131 | 131 | } |
132 | 132 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | $jobRepository = $container->get('Core/RepositoryService')->get('Jobs/Job'); |
39 | 39 | |
40 | 40 | $auth = $container->get('AuthenticationService'); |
41 | - $filter = new PaginationQuery($auth,$jobRepository); |
|
41 | + $filter = new PaginationQuery($auth, $jobRepository); |
|
42 | 42 | return $filter; |
43 | 43 | } |
44 | 44 | } |
@@ -513,10 +513,10 @@ discard block |
||
513 | 513 | public function getLocation() |
514 | 514 | { |
515 | 515 | if (null === $this->location) { |
516 | - $array=[]; |
|
517 | - if(null != $this->locations){ |
|
516 | + $array = []; |
|
517 | + if (null != $this->locations) { |
|
518 | 518 | foreach ($this->locations as $location) { /* @var \Core\Entity\LocationInterface $location */ |
519 | - $array[]=$location->getCity(); |
|
519 | + $array[] = $location->getCity(); |
|
520 | 520 | } |
521 | 521 | return implode(', ', $array); |
522 | 522 | } |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | if ($removePermissions) { |
572 | 572 | $this->getPermissions()->revoke($this->user, Permissions::PERMISSION_ALL); |
573 | 573 | } |
574 | - $this->user=null; |
|
574 | + $this->user = null; |
|
575 | 575 | } |
576 | 576 | |
577 | 577 | return $this; |
@@ -579,8 +579,8 @@ discard block |
||
579 | 579 | |
580 | 580 | public function unsetOrganization($removePermissions = true) |
581 | 581 | { |
582 | - if($this->organization && $removePermissions){ |
|
583 | - $this->getPermissions()->revoke($this->organization,Permissions::PERMISSION_ALL); |
|
582 | + if ($this->organization && $removePermissions) { |
|
583 | + $this->getPermissions()->revoke($this->organization, Permissions::PERMISSION_ALL); |
|
584 | 584 | } |
585 | 585 | |
586 | 586 | $this->organization = null; |
@@ -832,7 +832,7 @@ discard block |
||
832 | 832 | $organization = $this->organization; |
833 | 833 | if (is_object($organization) && $organization->getImage()) { |
834 | 834 | $organizationImage = $organization->getImage(); |
835 | - return "/file/Organizations.OrganizationImage/" . $organizationImage->getId(); |
|
835 | + return "/file/Organizations.OrganizationImage/".$organizationImage->getId(); |
|
836 | 836 | } |
837 | 837 | return $this->logoRef; |
838 | 838 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | protected $currentUser; |
65 | 65 | |
66 | - public function __construct($parameters=[]) |
|
66 | + public function __construct($parameters = []) |
|
67 | 67 | { |
68 | 68 | $defaultLoginInfo = [ |
69 | 69 | 'facebook' => [ |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | 'session_password-login' => getenv('LINKEDIN_USER_PASSWORD') |
76 | 76 | ], |
77 | 77 | ]; |
78 | - $socialLoginConfig = isset($parameters['social_login_info']) ? $parameters['social_login_info']:[]; |
|
79 | - $this->socialLoginInfo = array_merge($defaultLoginInfo,$socialLoginConfig); |
|
78 | + $socialLoginConfig = isset($parameters['social_login_info']) ? $parameters['social_login_info'] : []; |
|
79 | + $this->socialLoginInfo = array_merge($defaultLoginInfo, $socialLoginConfig); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | 'Auth\Entity\UserImage', |
99 | 99 | 'Organizations\Entity\OrganizationName', |
100 | 100 | ]; |
101 | - foreach($documents as $document){ |
|
101 | + foreach ($documents as $document) { |
|
102 | 102 | $dm->createQueryBuilder($document) |
103 | 103 | ->remove() |
104 | 104 | ->getQuery() |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | { |
127 | 127 | $provider = strtolower($provider); |
128 | 128 | $mink = $this->minkContext; |
129 | - foreach($this->socialLoginInfo[$provider] as $field=>$value){ |
|
130 | - $mink->fillField($field,$value); |
|
129 | + foreach ($this->socialLoginInfo[$provider] as $field=>$value) { |
|
130 | + $mink->fillField($field, $value); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | |
@@ -135,17 +135,17 @@ discard block |
||
135 | 135 | * @Given I am logged in as a recruiter |
136 | 136 | * @Given I am logged in as a recruiter with :organization as organization |
137 | 137 | */ |
138 | - public function iAmLoggedInAsARecruiter($organization=null) |
|
138 | + public function iAmLoggedInAsARecruiter($organization = null) |
|
139 | 139 | { |
140 | 140 | $user = $this->thereIsAUserIdentifiedBy( |
141 | 141 | '[email protected]', |
142 | - 'test',User::ROLE_RECRUITER, |
|
142 | + 'test', User::ROLE_RECRUITER, |
|
143 | 143 | 'Test Recruiter', |
144 | 144 | $organization |
145 | 145 | ); |
146 | - $this->startLogin($user,'test'); |
|
147 | - if(!is_null($organization)){ |
|
148 | - $this->iHaveMainOrganization($user,$organization); |
|
146 | + $this->startLogin($user, 'test'); |
|
147 | + if (!is_null($organization)) { |
|
148 | + $this->iHaveMainOrganization($user, $organization); |
|
149 | 149 | } |
150 | 150 | } |
151 | 151 | |
@@ -156,9 +156,9 @@ discard block |
||
156 | 156 | public function iDonTHaveUser($login) |
157 | 157 | { |
158 | 158 | $repo = $this->getUserRepository(); |
159 | - $user=$repo->findByLogin($login); |
|
160 | - if($user instanceof UserInterface){ |
|
161 | - $repo->remove($user,true); |
|
159 | + $user = $repo->findByLogin($login); |
|
160 | + if ($user instanceof UserInterface) { |
|
161 | + $repo->remove($user, true); |
|
162 | 162 | } |
163 | 163 | } |
164 | 164 | |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | * @param $role |
168 | 168 | * @param TableNode $fields |
169 | 169 | */ |
170 | - public function iHaveUserWithTheFollowing($role,TableNode $fields) |
|
170 | + public function iHaveUserWithTheFollowing($role, TableNode $fields) |
|
171 | 171 | { |
172 | 172 | $normalizedFields = [ |
173 | 173 | 'login' => '[email protected]', |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | 'password' => 'test', |
177 | 177 | 'organization' => 'Cross Solution' |
178 | 178 | ]; |
179 | - foreach($fields->getRowsHash() as $field=>$value){ |
|
179 | + foreach ($fields->getRowsHash() as $field=>$value) { |
|
180 | 180 | $field = Inflector::camelize($field); |
181 | 181 | $normalizedFields[$field] = $value; |
182 | 182 | } |
@@ -196,14 +196,14 @@ discard block |
||
196 | 196 | */ |
197 | 197 | public function iAmLoggedInAsAnAdmin() |
198 | 198 | { |
199 | - $user = $this->thereIsAUserIdentifiedBy('[email protected]','test',User::ROLE_ADMIN); |
|
200 | - $this->startLogin($user,'test'); |
|
199 | + $user = $this->thereIsAUserIdentifiedBy('[email protected]', 'test', User::ROLE_ADMIN); |
|
200 | + $this->startLogin($user, 'test'); |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | private function startLogin(UserInterface $user, $password) |
204 | 204 | { |
205 | 205 | $currentUser = $this->currentUser; |
206 | - if(!is_object($currentUser) || $user->getId()!=$currentUser->getId()){ |
|
206 | + if (!is_object($currentUser) || $user->getId() != $currentUser->getId()) { |
|
207 | 207 | $this->iWantToLogIn(); |
208 | 208 | $this->iSpecifyTheUsernameAs($user->getLogin()); |
209 | 209 | $this->iSpecifyThePasswordAs($password); |
@@ -223,15 +223,15 @@ discard block |
||
223 | 223 | /** |
224 | 224 | * @Given there is a user :email identified by :password |
225 | 225 | */ |
226 | - public function thereIsAUserIdentifiedBy($email, $password,$role=User::ROLE_RECRUITER,$fullname="Test Recruiter",$organization=null) |
|
226 | + public function thereIsAUserIdentifiedBy($email, $password, $role = User::ROLE_RECRUITER, $fullname = "Test Recruiter", $organization = null) |
|
227 | 227 | { |
228 | 228 | $repo = $this->getUserRepository(); |
229 | - if(!is_object($user=$repo->findByEmail($email))){ |
|
230 | - $user = $this->createUser($email,$password,$role,$fullname,$organization); |
|
229 | + if (!is_object($user = $repo->findByEmail($email))) { |
|
230 | + $user = $this->createUser($email, $password, $role, $fullname, $organization); |
|
231 | 231 | } |
232 | 232 | |
233 | - if(!is_null($organization)){ |
|
234 | - $this->iHaveMainOrganization($user,$organization); |
|
233 | + if (!is_null($organization)) { |
|
234 | + $this->iHaveMainOrganization($user, $organization); |
|
235 | 235 | } |
236 | 236 | $this->addCreatedUser($user); |
237 | 237 | $repo->getDocumentManager()->refresh($user); |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | * |
248 | 248 | * @return \Auth\Entity\UserInterface |
249 | 249 | */ |
250 | - public function createUser($email,$password,$role=User::ROLE_RECRUITER,$fullname="Test Recruiter") |
|
250 | + public function createUser($email, $password, $role = User::ROLE_RECRUITER, $fullname = "Test Recruiter") |
|
251 | 251 | { |
252 | 252 | /* @var Register $service */ |
253 | 253 | /* @var User $user */ |
@@ -258,10 +258,10 @@ discard block |
||
258 | 258 | $user->setRole($role); |
259 | 259 | $settings = $user->getSettings('Applications'); |
260 | 260 | |
261 | - $expFullName = explode(' ',$fullname); |
|
261 | + $expFullName = explode(' ', $fullname); |
|
262 | 262 | $info = $user->getInfo(); |
263 | 263 | $info->setFirstName(array_shift($expFullName)); |
264 | - $info->setLastName(count($expFullName)>0 ? implode(' ',$expFullName):''); |
|
264 | + $info->setLastName(count($expFullName) > 0 ? implode(' ', $expFullName) : ''); |
|
265 | 265 | $info->setEmail($email); |
266 | 266 | $info->setEmailVerified(true); |
267 | 267 | $repo->store($user); |
@@ -286,20 +286,20 @@ discard block |
||
286 | 286 | * @When I have :organization as my main organization |
287 | 287 | * @param $orgName |
288 | 288 | */ |
289 | - public function iHaveMainOrganization(UserInterface $user,$orgName) |
|
289 | + public function iHaveMainOrganization(UserInterface $user, $orgName) |
|
290 | 290 | { |
291 | 291 | /* @var $repoOrganization OrganizationRepository */ |
292 | 292 | $repoOrganization = $this->coreContext->getRepositories()->get('Organizations/Organization'); |
293 | 293 | $result = $repoOrganization->findByName($orgName); |
294 | - $organization = count($result) > 0 ? $result[0]:null; |
|
295 | - if(!$organization instanceof Organization){ |
|
294 | + $organization = count($result) > 0 ? $result[0] : null; |
|
295 | + if (!$organization instanceof Organization) { |
|
296 | 296 | $organization = new Organization(); |
297 | 297 | $organizationName = new OrganizationName($orgName); |
298 | 298 | $organization->setOrganizationName($organizationName); |
299 | 299 | } |
300 | 300 | $organization->setProfileSetting(Organization::PROFILE_ALWAYS_ENABLE); |
301 | 301 | $permissions = $organization->getPermissions(); |
302 | - $permissions->grant($user,Permissions::PERMISSION_ALL); |
|
302 | + $permissions->grant($user, Permissions::PERMISSION_ALL); |
|
303 | 303 | |
304 | 304 | $organization->setUser($user); |
305 | 305 | $repoOrganization->store($organization); |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | */ |
333 | 333 | public function iSpecifyTheUsernameAs($username) |
334 | 334 | { |
335 | - $this->minkContext->fillField('Login name',$username); |
|
335 | + $this->minkContext->fillField('Login name', $username); |
|
336 | 336 | } |
337 | 337 | |
338 | 338 | /** |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | */ |
341 | 341 | public function iSpecifyThePasswordAs($password) |
342 | 342 | { |
343 | - $this->minkContext->fillField('Password',$password); |
|
343 | + $this->minkContext->fillField('Password', $password); |
|
344 | 344 | } |
345 | 345 | |
346 | 346 | /** |
@@ -351,8 +351,8 @@ discard block |
||
351 | 351 | $repo = $this->getUserRepository(); |
352 | 352 | $user = $repo->findByLogin($username); |
353 | 353 | |
354 | - if(!$user instanceof User){ |
|
355 | - throw new \Exception(sprintf('There is no user with this login: "%s"',$username)); |
|
354 | + if (!$user instanceof User) { |
|
355 | + throw new \Exception(sprintf('There is no user with this login: "%s"', $username)); |
|
356 | 356 | } |
357 | 357 | $this->iWantToLogIn(); |
358 | 358 | $this->iSpecifyTheUsernameAs($username); |
@@ -408,13 +408,13 @@ discard block |
||
408 | 408 | { |
409 | 409 | $repo = $this->getUserRepository(); |
410 | 410 | $data = $table->getRowsHash(); |
411 | - $email = isset($data['email']) ? $data['email']:'[email protected]'; |
|
412 | - $password = isset($data['password']) ? $data['password']:'test'; |
|
413 | - $fullname = isset($data['fullname']) ? $data['fullname']:'Test User'; |
|
414 | - $role = isset($data['role']) ? $data['role']:User::ROLE_RECRUITER; |
|
411 | + $email = isset($data['email']) ? $data['email'] : '[email protected]'; |
|
412 | + $password = isset($data['password']) ? $data['password'] : 'test'; |
|
413 | + $fullname = isset($data['fullname']) ? $data['fullname'] : 'Test User'; |
|
414 | + $role = isset($data['role']) ? $data['role'] : User::ROLE_RECRUITER; |
|
415 | 415 | |
416 | - if(!is_object($user=$repo->findByLogin($email))){ |
|
417 | - $user = $this->createUser($email,$password,$role,$fullname); |
|
416 | + if (!is_object($user = $repo->findByLogin($email))) { |
|
417 | + $user = $this->createUser($email, $password, $role, $fullname); |
|
418 | 418 | } |
419 | 419 | $this->currentUser = $user; |
420 | 420 | $this->addCreatedUser($user); |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | |
423 | 423 | private function addCreatedUser(UserInterface $user) |
424 | 424 | { |
425 | - if(!in_array($user,static::$users)){ |
|
425 | + if (!in_array($user, static::$users)) { |
|
426 | 426 | static::$users[] = $user; |
427 | 427 | } |
428 | 428 | } |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | */ |
443 | 443 | public function getCurrentUser() |
444 | 444 | { |
445 | - if(!$this->currentUser instanceof User){ |
|
445 | + if (!$this->currentUser instanceof User) { |
|
446 | 446 | throw new FailedExpectationException('Need to login first before use this step'); |
447 | 447 | } |
448 | 448 | return $this->currentUser; |
@@ -103,9 +103,9 @@ discard block |
||
103 | 103 | public function iHaveOrganization($name) |
104 | 104 | { |
105 | 105 | $user = $this->getUserContext()->getCurrentUser(); |
106 | - $organization = $this->findOrganizationByName($name,false); |
|
106 | + $organization = $this->findOrganizationByName($name, false); |
|
107 | 107 | $repo = $this->getRepository('Organizations/Organization'); |
108 | - if(!$organization instanceof Organization){ |
|
108 | + if (!$organization instanceof Organization) { |
|
109 | 109 | |
110 | 110 | $organization = new Organization(); |
111 | 111 | $organizationName = new OrganizationName($name); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $organization->setParent($parent); |
119 | 119 | $organization->setProfileSetting(Organization::PROFILE_ALWAYS_ENABLE); |
120 | 120 | $permissions = $organization->getPermissions(); |
121 | - $permissions->grant($user,Permissions::PERMISSION_ALL); |
|
121 | + $permissions->grant($user, Permissions::PERMISSION_ALL); |
|
122 | 122 | |
123 | 123 | $repo->store($organization); |
124 | 124 | $repo->getDocumentManager()->refresh($organization); |
@@ -128,19 +128,19 @@ discard block |
||
128 | 128 | /** |
129 | 129 | * @Given organization :name have jobs: |
130 | 130 | */ |
131 | - public function organizationHavePublishedJob($name,TableNode $table) |
|
131 | + public function organizationHavePublishedJob($name, TableNode $table) |
|
132 | 132 | { |
133 | 133 | $user = $this->getUserContext()->getCurrentUser(); |
134 | - if(is_null($user)){ |
|
134 | + if (is_null($user)) { |
|
135 | 135 | throw new FailedExpectationException('Need to login first'); |
136 | 136 | } |
137 | 137 | |
138 | 138 | $organization = $this->findOrganizationByName($name); |
139 | - foreach($table->getColumnsHash() as $index=>$definitions){ |
|
139 | + foreach ($table->getColumnsHash() as $index=>$definitions) { |
|
140 | 140 | $definitions['user'] = $user->getLogin(); |
141 | - $status = isset($definitions['status']) ? $definitions['status']:'draft'; |
|
141 | + $status = isset($definitions['status']) ? $definitions['status'] : 'draft'; |
|
142 | 142 | unset($definitions['status']); |
143 | - $this->jobContext->buildJob($status,$definitions,$organization); |
|
143 | + $this->jobContext->buildJob($status, $definitions, $organization); |
|
144 | 144 | } |
145 | 145 | } |
146 | 146 | |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | * @param $name |
150 | 150 | * @param $setting |
151 | 151 | */ |
152 | - public function profileSetting($name,$setting) |
|
152 | + public function profileSetting($name, $setting) |
|
153 | 153 | { |
154 | 154 | $repo = $this->getRepository('Organizations/Organization'); |
155 | 155 | $organization = $this->findOrganizationByName($name); |
@@ -169,12 +169,12 @@ discard block |
||
169 | 169 | $contact = $organization->getContact(); |
170 | 170 | |
171 | 171 | $definitions = $table->getRowsHash(); |
172 | - foreach($definitions as $name=>$value){ |
|
172 | + foreach ($definitions as $name=>$value) { |
|
173 | 173 | $field = Inflector::camelize($name); |
174 | 174 | $method = 'set'.$field; |
175 | - $callback = array($contact,$method); |
|
176 | - if(is_callable($callback)){ |
|
177 | - call_user_func_array($callback,[$value]); |
|
175 | + $callback = array($contact, $method); |
|
176 | + if (is_callable($callback)) { |
|
177 | + call_user_func_array($callback, [$value]); |
|
178 | 178 | } |
179 | 179 | } |
180 | 180 | $this->getRepository('Organizations/Organization')->store($organization); |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | public function iGoToOrganizationProfilePage($name) |
189 | 189 | { |
190 | 190 | $organization = $this->findOrganizationByName($name); |
191 | - $url = $this->generateUrl('lang/organizations/profileDetail',[ |
|
191 | + $url = $this->generateUrl('lang/organizations/profileDetail', [ |
|
192 | 192 | 'id' => $organization->getId() |
193 | 193 | ]); |
194 | 194 | |
@@ -205,10 +205,10 @@ discard block |
||
205 | 205 | /* @var OrganizationRepository $repo */ |
206 | 206 | $repo = $this->getRepository('Organizations/Organization'); |
207 | 207 | $result = $repo->findByName($name); |
208 | - $organization = count($result) > 0 ? $result[0]:null; |
|
209 | - if(!$organization instanceof Organization && $throwException){ |
|
208 | + $organization = count($result) > 0 ? $result[0] : null; |
|
209 | + if (!$organization instanceof Organization && $throwException) { |
|
210 | 210 | throw new FailedExpectationException( |
211 | - sprintf('Organization %s is not found.',$name) |
|
211 | + sprintf('Organization %s is not found.', $name) |
|
212 | 212 | ); |
213 | 213 | } |
214 | 214 | return $organization; |
@@ -227,8 +227,8 @@ discard block |
||
227 | 227 | $jobRepo = $this->getRepository('Jobs/Job'); |
228 | 228 | $result = $jobRepo->findByOrganization($org->getId()); |
229 | 229 | |
230 | - foreach($result as $job){ |
|
231 | - $jobRepo->remove($job,true); |
|
230 | + foreach ($result as $job) { |
|
231 | + $jobRepo->remove($job, true); |
|
232 | 232 | } |
233 | 233 | } |
234 | 234 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | ], |
14 | 14 | ], |
15 | 15 | 'annotation' => [ |
16 | - 'paths' => [ __DIR__ . '/../src/Organizations/Entity'] |
|
16 | + 'paths' => [__DIR__.'/../src/Organizations/Entity'] |
|
17 | 17 | ], |
18 | 18 | ], |
19 | 19 | 'eventmanager' => [ |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | 'translation_file_patterns' => [ |
41 | 41 | [ |
42 | 42 | 'type' => 'gettext', |
43 | - 'base_dir' => __DIR__ . '/../language', |
|
43 | + 'base_dir' => __DIR__.'/../language', |
|
44 | 44 | 'pattern' => '%s.mo', |
45 | 45 | ], |
46 | 46 | ], |
@@ -66,18 +66,18 @@ 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 | ], |
78 | 78 | // Where to look for view templates not mapped above |
79 | 79 | 'template_path_stack' => [ |
80 | - __DIR__ . '/../view', |
|
80 | + __DIR__.'/../view', |
|
81 | 81 | ], |
82 | 82 | ], |
83 | 83 | 'form_elements' => [ |
@@ -155,11 +155,11 @@ discard block |
||
155 | 155 | 'allow' => [ |
156 | 156 | 'Entity/OrganizationImage', |
157 | 157 | 'route/lang/organizations/invite', |
158 | - 'Organizations/InviteEmployee' => [ 'accept' ], |
|
158 | + 'Organizations/InviteEmployee' => ['accept'], |
|
159 | 159 | ], |
160 | 160 | 'deny' => [ |
161 | 161 | 'route/lang/organizations', |
162 | - 'Organizations/InviteEmployee' => [ 'invite' ], |
|
162 | + 'Organizations/InviteEmployee' => ['invite'], |
|
163 | 163 | ], |
164 | 164 | ], |
165 | 165 | // recruiters are allowed to view their companies |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | 'allow' => [ |
168 | 168 | 'route/lang/organizations', |
169 | 169 | 'Organizations/InviteEmployee', |
170 | - 'Entity/Organization' => [ 'edit' => 'Organizations/Write' ], |
|
170 | + 'Entity/Organization' => ['edit' => 'Organizations/Write'], |
|
171 | 171 | ], |
172 | 172 | ], |
173 | 173 | ], |
@@ -183,8 +183,8 @@ discard block |
||
183 | 183 | 'organizations' => [ |
184 | 184 | 'label' => 'Organizations', |
185 | 185 | 'route' => 'lang/organizations', |
186 | - 'order' => 65, // allows to order the menu items |
|
187 | - 'resource' => 'route/lang/organizations', // if a resource is defined, the acl will be applied. |
|
186 | + 'order' => 65, // allows to order the menu items |
|
187 | + 'resource' => 'route/lang/organizations', // if a resource is defined, the acl will be applied. |
|
188 | 188 | |
189 | 189 | 'pages' => [ |
190 | 190 | 'list' => [ |