@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | ], |
21 | 21 | ], |
22 | 22 | 'annotation' => [ |
23 | - 'paths' => [ __DIR__ . '/../src/Entity'] |
|
23 | + 'paths' => [__DIR__.'/../src/Entity'] |
|
24 | 24 | ], |
25 | 25 | ], |
26 | 26 | 'eventmanager' => [ |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | 'translation_file_patterns' => [ |
48 | 48 | [ |
49 | 49 | 'type' => 'gettext', |
50 | - 'base_dir' => __DIR__ . '/../language', |
|
50 | + 'base_dir' => __DIR__.'/../language', |
|
51 | 51 | 'pattern' => '%s.mo', |
52 | 52 | ], |
53 | 53 | ], |
@@ -74,20 +74,20 @@ discard block |
||
74 | 74 | 'view_manager' => [ |
75 | 75 | // Map template to files. Speeds up the lookup through the template stack. |
76 | 76 | 'template_map' => [ |
77 | - 'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml', |
|
78 | - 'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml', |
|
79 | - 'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml', |
|
80 | - 'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml', |
|
81 | - 'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml', |
|
82 | - 'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml', |
|
83 | - 'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml', |
|
84 | - 'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml', |
|
85 | - 'organizations/form/featured-companies-filter-radio' => __DIR__ . '/../view/form/featured-companies-filter-radio.phtml', |
|
86 | - 'organizations/profile/disabled' => __DIR__ . '/../view/organizations/profile/disabled.phtml', |
|
77 | + 'organizations/index/edit' => __DIR__.'/../view/organizations/index/form.phtml', |
|
78 | + 'organizations/form/employees-fieldset' => __DIR__.'/../view/form/employees-fieldset.phtml', |
|
79 | + 'organizations/form/employee-fieldset' => __DIR__.'/../view/form/employee-fieldset.phtml', |
|
80 | + 'organizations/form/invite-employee-bar' => __DIR__.'/../view/form/invite-employee-bar.phtml', |
|
81 | + 'organizations/error/no-parent' => __DIR__.'/../view/error/no-parent.phtml', |
|
82 | + 'organizations/error/invite' => __DIR__.'/../view/error/invite.phtml', |
|
83 | + 'organizations/mail/invite-employee' => __DIR__.'/../view/mail/invite-employee.phtml', |
|
84 | + 'organizations/form/workflow-fieldset' => __DIR__.'/../view/form/workflow-fieldset.phtml', |
|
85 | + 'organizations/form/featured-companies-filter-radio' => __DIR__.'/../view/form/featured-companies-filter-radio.phtml', |
|
86 | + 'organizations/profile/disabled' => __DIR__.'/../view/organizations/profile/disabled.phtml', |
|
87 | 87 | ], |
88 | 88 | // Where to look for view templates not mapped above |
89 | 89 | 'template_path_stack' => [ |
90 | - __DIR__ . '/../view', |
|
90 | + __DIR__.'/../view', |
|
91 | 91 | ], |
92 | 92 | ], |
93 | 93 | 'form_elements' => [ |
@@ -166,13 +166,13 @@ discard block |
||
166 | 166 | 'allow' => [ |
167 | 167 | 'Entity/OrganizationImage', |
168 | 168 | 'route/lang/organizations/invite', |
169 | - 'Organizations/InviteEmployee' => [ 'accept' ], |
|
169 | + 'Organizations/InviteEmployee' => ['accept'], |
|
170 | 170 | 'route/lang/organizations/profile', |
171 | 171 | 'route/lang/organizations/profileDetail', |
172 | 172 | ], |
173 | 173 | 'deny' => [ |
174 | 174 | 'route/lang/organizations', |
175 | - 'Organizations/InviteEmployee' => [ 'invite' ], |
|
175 | + 'Organizations/InviteEmployee' => ['invite'], |
|
176 | 176 | ], |
177 | 177 | ], |
178 | 178 | // recruiters are allowed to view their companies |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | 'allow' => [ |
181 | 181 | 'route/lang/organizations', |
182 | 182 | 'Organizations/InviteEmployee', |
183 | - 'Entity/Organization' => [ 'edit' => 'Organizations/Write' ], |
|
183 | + 'Entity/Organization' => ['edit' => 'Organizations/Write'], |
|
184 | 184 | 'route/lang/organizations/profile', |
185 | 185 | 'route/lang/organizations/profileDetail' |
186 | 186 | ], |
@@ -203,8 +203,8 @@ discard block |
||
203 | 203 | 'organizations' => [ |
204 | 204 | 'label' => 'Organizations', |
205 | 205 | 'route' => 'lang/organizations', |
206 | - 'order' => 65, // allows to order the menu items |
|
207 | - 'resource' => 'route/lang/organizations', // if a resource is defined, the acl will be applied. |
|
206 | + 'order' => 65, // allows to order the menu items |
|
207 | + 'resource' => 'route/lang/organizations', // if a resource is defined, the acl will be applied. |
|
208 | 208 | |
209 | 209 | 'pages' => [ |
210 | 210 | 'list' => [ |