@@ -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 |
@@ -197,7 +197,7 @@ |
||
197 | 197 | * @param bool $persist |
198 | 198 | * @return \Organizations\Entity\Organization |
199 | 199 | */ |
200 | - public function create(array $data = null, $persist=false) |
|
200 | + public function create(array $data = null, $persist = false) |
|
201 | 201 | { |
202 | 202 | $entity = parent::create($data); |
203 | 203 | $entity->isDraft(true); |
@@ -40,7 +40,7 @@ |
||
40 | 40 | |
41 | 41 | if ($document instanceof UserInterface) { |
42 | 42 | $repository = $args->getDocumentManager()->getRepository('Organizations\Entity\Organization'); |
43 | - $userId = $document->getId(); |
|
43 | + $userId = $document->getId(); |
|
44 | 44 | $reference = new OrganizationReference($userId, $repository); |
45 | 45 | |
46 | 46 | $document->setOrganization($reference); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @var String |
35 | 35 | */ |
36 | - protected $repositoryName="Organizations/Organization"; |
|
36 | + protected $repositoryName = "Organizations/Organization"; |
|
37 | 37 | |
38 | 38 | /** |
39 | 39 | * Sortable fields |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | */ |
91 | 91 | $auth = $this->authService; |
92 | 92 | $user = $auth->getUser(); |
93 | - $ignored = [null,'guest',UserInterface::ROLE_USER]; |
|
93 | + $ignored = [null, 'guest', UserInterface::ROLE_USER]; |
|
94 | 94 | if (!in_array($user->getRole(), $ignored)) { |
95 | 95 | $queryBuilder->field('permissions.view')->equals($user->getId()); |
96 | 96 | } |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | if (isset($params['type']) && $params['type'] === 'profile') { |
109 | 109 | //@TODO: we should use aggregate query here |
110 | 110 | $queryBuilder->field('profileSetting') |
111 | - ->in([Organization::PROFILE_ALWAYS_ENABLE,Organization::PROFILE_ACTIVE_JOBS]) |
|
111 | + ->in([Organization::PROFILE_ALWAYS_ENABLE, Organization::PROFILE_ACTIVE_JOBS]) |
|
112 | 112 | ; |
113 | 113 | |
114 | 114 | $filters = $this->getOrganizationProfileFilters($queryBuilder); |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | $filters = []; |
134 | 134 | foreach ($results->toArray() as $organization) { |
135 | - if ($organization->getProfileSetting()==Organization::PROFILE_ACTIVE_JOBS) { |
|
135 | + if ($organization->getProfileSetting() == Organization::PROFILE_ACTIVE_JOBS) { |
|
136 | 136 | $qb = $jobRepository->createQueryBuilder(); |
137 | 137 | $qb |
138 | 138 | ->field('organization')->equals($organization->getId()) |
@@ -24,7 +24,7 @@ |
||
24 | 24 | public function getHydrator() |
25 | 25 | { |
26 | 26 | if (!$this->hydrator) { |
27 | - $hydrator = new EntityHydrator(); |
|
27 | + $hydrator = new EntityHydrator(); |
|
28 | 28 | $this->setHydrator($hydrator); |
29 | 29 | } |
30 | 30 | return $this->hydrator; |
@@ -28,7 +28,7 @@ |
||
28 | 28 | * |
29 | 29 | * @var string |
30 | 30 | */ |
31 | - protected $options="Jobs/Options"; |
|
31 | + protected $options = "Jobs/Options"; |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * Configure the Form width Options |
@@ -24,7 +24,7 @@ |
||
24 | 24 | public function getHydrator() |
25 | 25 | { |
26 | 26 | if (!$this->hydrator) { |
27 | - $hydrator = new EntityHydrator(); |
|
27 | + $hydrator = new EntityHydrator(); |
|
28 | 28 | $this->setHydrator($hydrator); |
29 | 29 | } |
30 | 30 | return $this->hydrator; |
@@ -46,13 +46,13 @@ discard block |
||
46 | 46 | |
47 | 47 | /* todo: WRITE own Hydrator strategy class */ |
48 | 48 | $strategy = new ClosureStrategy( |
49 | - function ($object) use ($users) { |
|
49 | + function($object) use ($users) { |
|
50 | 50 | if (is_string($object)) { |
51 | 51 | return $users->find($object); |
52 | 52 | } |
53 | 53 | return $object; |
54 | 54 | }, |
55 | - function ($data) use ($users) { |
|
55 | + function($data) use ($users) { |
|
56 | 56 | if (is_string($data)) { |
57 | 57 | $data = $users->find($data); |
58 | 58 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | /* todo: write own strategy class */ |
64 | 64 | $permStrategy = new ClosureStrategy( |
65 | 65 | // extract |
66 | - function ($object) { |
|
66 | + function($object) { |
|
67 | 67 | /* @var $object \Organizations\Entity\EmployeePermissionsInterface */ |
68 | 68 | $values = array(); |
69 | 69 | foreach (array( |
@@ -77,10 +77,10 @@ discard block |
||
77 | 77 | |
78 | 78 | return $values; |
79 | 79 | }, |
80 | - function ($data) { |
|
80 | + function($data) { |
|
81 | 81 | $permissions = array_reduce( |
82 | 82 | $data, |
83 | - function ($c, $i) { |
|
83 | + function($c, $i) { |
|
84 | 84 | return $c | $i; |
85 | 85 | }, |
86 | 86 | 0 |
@@ -35,7 +35,7 @@ |
||
35 | 35 | { |
36 | 36 | if (!$value instanceof Job) { |
37 | 37 | } |
38 | - $reciptients=[]; |
|
38 | + $reciptients = []; |
|
39 | 39 | |
40 | 40 | return $reciptients; |
41 | 41 | } |