Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 3462 | Rev 3988 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
779 geraldo 2
 
1 www 3
use LeadersLinked\Model\UserType;
4
 
779 geraldo 5
function getAclResources() {
1 www 6
    return [
7
        'home',
8
        'signin-admin',
9
        'signin-company',
10
        'dashboard',
11
        'signout',
12
        'storage',
13
        'settings',
14
        'settings/company-sizes',
15
        'settings/company-sizes/add',
16
        'settings/company-sizes/edit',
17
        'settings/company-sizes/delete',
18
        'settings/competency-types',
19
        'settings/competency-types/add',
20
        'settings/competency-types/edit',
21
        'settings/competency-types/delete',
1102 geraldo 22
        'settings/behaviors',
23
        'settings/behaviors/add',
1138 geraldo 24
        'settings/behaviors/edit',
28 efrain 25
        'settings/competency-types/import',
1 www 26
        'settings/competencies',
27
        'settings/competencies/add',
28
        'settings/competencies/edit',
29
        'settings/competencies/delete',
28 efrain 30
        'settings/competencies/import',
1 www 31
        'settings/degrees',
32
        'settings/degrees/add',
33
        'settings/degrees/edit',
34
        'settings/degrees/delete',
35
        'settings/email-templates',
36
        'settings/email-templates/edit',
37
        'settings/push-templates',
38
        'settings/push-templates/edit',
39
        'settings/group-types',
40
        'settings/group-types/add',
41
        'settings/group-types/edit',
42
        'settings/group-types/delete',
43
        'settings/industries',
44
        'settings/industries/add',
45
        'settings/industries/edit',
46
        'settings/industries/delete',
1328 eleazar 47
        //'settings/jobs-interview',
48
        //'settings/jobs-interview/form',
49
        //'settings/jobs-interview/form/add',
50
        //'settings/jobs-interview/form/delete',
51
        //'settings/jobs-interview/form/edit',
1 www 52
        'settings/job-categories',
53
        'settings/job-categories/add',
54
        'settings/job-categories/edit',
55
        'settings/job-categories/delete',
28 efrain 56
        'settings/jobs-description',
57
        'settings/jobs-description/add',
58
        'settings/jobs-description/edit',
59
        'settings/jobs-description/delete',
561 geraldo 60
        'settings/jobs-description/report',
846 geraldo 61
        'settings/jobs-description/import',
67 efrain 62
        'settings/positions',
63
        'settings/positions/add',
64
        'settings/positions/edit',
65
        'settings/positions/delete',
1320 efrain 66
        'settings/positions/subordinates',
1 www 67
        'settings/skills',
68
        'settings/skills/add',
69
        'settings/skills/edit',
70
        'settings/skills/delete',
71
        'publications',
72
        'publications/posts',
73
        'publications/posts/add',
74
        'publications/posts/edit',
75
        'publications/posts/delete',
76
        'publications/pages',
77
        'publications/pages/add',
78
        'publications/pages/edit',
79
        'publications/pages/delete',
80
        'users',
81
        'users/change-password',
82
        'users/unblock',
83
        'users/invite',
84
        'users/accept',
85
        'users/cancel',
86
        'users/reject',
87
        'users/edit',
88
        'users/upload',
129 efrain 89
        'users/email-verify',
1 www 90
        'companies',
91
        'companies/edit',
92
        'companies/services',
93
        'companies/roles',
94
        //Company
95
        'profile',
96
        'profile/extended',
97
        'profile/cover',
98
        'profile/image',
779 geraldo 99
        'profile/header',
100
        'profile/footer',
1 www 101
        'profile/website',
102
        'profile/foundation_year',
103
        'profile/location',
104
        'profile/social-network',
105
        'profile/company-size',
106
        'profile/industry',
107
        'profile/delete',
108
        'feeds',
109
        'feeds/timeline',
110
        'feeds/delete',
111
        'feeds/comments',
112
        'feeds/comments/delete',
113
        'feeds/add',
114
        'followers',
115
        'followers/delete',
114 efrain 116
        'self-evaluation',
117
        'self-evaluation/forms',
118
        'self-evaluation/forms/add',
119
        'self-evaluation/forms/edit',
120
        'self-evaluation/forms/delete',
115 efrain 121
        'self-evaluation/users',
122
        'self-evaluation/users/add',
123
        'self-evaluation/users/delete',
114 efrain 124
        'self-evaluation/reviews',
115 efrain 125
        'self-evaluation/reviews/edit',
470 geraldo 126
        'self-evaluation/reviews/report',
946 geraldo 127
        'performance-evaluation',
128
        'performance-evaluation/forms',
129
        'performance-evaluation/forms/add',
130
        'performance-evaluation/forms/edit',
131
        'performance-evaluation/forms/delete',
1383 efrain 132
        'performance-evaluation/evaluations',
133
        'performance-evaluation/evaluations/add',
134
        'performance-evaluation/evaluations/edit',
135
        'performance-evaluation/evaluations/delete',
136
        'performance-evaluation/evaluations/users',
137
        'performance-evaluation/evaluations/users/add',
138
        'performance-evaluation/evaluations/users/delete',
139
 
1263 geraldo 140
        'performance-evaluation/forms/report',
1320 efrain 141
        'performance-evaluation/reviews',
142
        'performance-evaluation/reviews/pdf',
1477 efrain 143
 
144
        'recruitment-and-selection',
145
        'recruitment-and-selection/vacancies',
146
        'recruitment-and-selection/vacancies/add',
147
        'recruitment-and-selection/vacancies/edit',
148
        'recruitment-and-selection/vacancies/delete',
149
        'recruitment-and-selection/candidates',
150
        'recruitment-and-selection/candidates/add',
151
        'recruitment-and-selection/candidates/edit',
152
        'recruitment-and-selection/candidates/delete',
1636 eleazar 153
        'recruitment-and-selection/user-by-email',
1710 eleazar 154
        'recruitment-and-selection/interview',
1709 eleazar 155
        'recruitment-and-selection/interview/form',
156
        'recruitment-and-selection/interview/form/add',
157
        'recruitment-and-selection/interview/form/edit',
158
        'recruitment-and-selection/interview/form/delete',
159
        'recruitment-and-selection/interview/report',
3587 eleazar 160
        'recruitment-and-selection/interview/vacancy',
1709 eleazar 161
 
1477 efrain 162
 
1 www 163
        'jobs',
164
        'jobs/add',
165
        'jobs/delete',
166
        'jobs/users-who-applied',
167
        'jobs/edit',
168
        'jobs/edit/title',
169
        'jobs/edit/status',
170
        'jobs/edit/last-date-of-application',
171
        'jobs/edit/employment-type',
172
        'jobs/edit/experience',
173
        'jobs/edit/job-category',
174
        'jobs/edit/extended',
175
        'jobs/edit/location',
176
        'jobs/edit/salary',
177
        'jobs/edit/languages',
178
        'jobs/edit/degrees',
179
        'jobs/edit/skills',
180
        'jobs/edit/how-apply',
181
        'microlearning',
182
        'microlearning/overview',
183
        'microlearning/reports',
2 efrain 184
        'microlearning/reports/progress',
185
        'microlearning/reports/devices',
187 efrain 186
        'microlearning/reports/comments-for-capsule',
1 www 187
        'microlearning/content',
188
        'microlearning/content/topics',
189
        'microlearning/content/topics/add',
190
        'microlearning/content/topics/edit',
191
        'microlearning/content/topics/delete',
192
        'microlearning/content/capsules',
193
        'microlearning/content/capsules/add',
194
        'microlearning/content/capsules/edit',
195
        'microlearning/content/capsules/delete',
196
        'microlearning/content/capsules/users',
197
        'microlearning/content/slides',
198
        'microlearning/content/slides/add',
199
        'microlearning/content/slides/edit',
200
        'microlearning/content/slides/delete',
201
        'microlearning/content/slides/text',
66 efrain 202
        'microlearning/content/quizzes',
203
        'microlearning/content/quizzes/add',
204
        'microlearning/content/quizzes/edit',
205
        'microlearning/content/quizzes/delete',
206
        'microlearning/content/quizzes/check',
207
        'microlearning/content/quizzes/publish',
208
        'microlearning/content/quizzes/copy',
209
        'microlearning/content/quizzes/questions',
210
        'microlearning/content/quizzes/questions/add',
211
        'microlearning/content/quizzes/questions/edit',
212
        'microlearning/content/quizzes/questions/delete',
213
        'microlearning/content/quizzes/questions/answers',
214
        'microlearning/content/quizzes/questions/answers/add',
215
        'microlearning/content/quizzes/questions/answers/edit',
216
        'microlearning/content/quizzes/questions/answers/delete',
1 www 217
        'microlearning/access-for-students',
218
        'microlearning/access-for-students/revoke',
219
        'microlearning/access-for-students/unlimit',
220
        'microlearning/access-for-students/cancel',
221
        'microlearning/access-for-students/reactive',
222
        'microlearning/access-for-students/upload',
223
        'microlearning/access-for-students/notification',
224
        'microlearning/students',
225
        'microlearning/students/edit',
226
        'microlearning/students/timeline',
227
        'microlearning/students/change-password',
228
        'microlearning/students/unblock',
229
        'microlearning/settings',
230
        'microlearning/settings/student-types',
231
        'microlearning/settings/student-types/add',
232
        'microlearning/settings/student-types/edit',
233
        'microlearning/settings/student-types/delete',
234
        'microlearning/settings/functions',
235
        'microlearning/settings/functions/add',
236
        'microlearning/settings/functions/edit',
237
        'microlearning/settings/functions/delete',
238
        'microlearning/settings/sectors',
239
        'microlearning/settings/sectors/add',
240
        'microlearning/settings/sectors/edit',
241
        'microlearning/settings/sectors/delete',
242
        'microlearning/settings/programs',
243
        'microlearning/settings/programs/add',
244
        'microlearning/settings/programs/edit',
245
        'microlearning/settings/programs/delete',
246
        'microlearning/settings/groups',
247
        'microlearning/settings/groups/add',
248
        'microlearning/settings/groups/edit',
249
        'microlearning/settings/groups/delete',
250
        'microlearning/settings/companies',
251
        'microlearning/settings/companies/add',
252
        'microlearning/settings/companies/edit',
253
        'microlearning/settings/companies/delete',
254
        'microlearning/settings/partners',
255
        'microlearning/settings/partners/add',
256
        'microlearning/settings/partners/edit',
257
        'microlearning/settings/partners/delete',
258
        'microlearning/settings/institutions',
259
        'microlearning/settings/institutions/add',
260
        'microlearning/settings/institutions/edit',
261
        'microlearning/settings/institutions/delete',
262
        //'microlearning/devices',
263
        //'microlearning/devices/notification',
1320 efrain 264
        //'test',
265
        //'test/method-one',
266
        //'test/method-two',
267
        //'test/method-three',
268
        //'test/method-four',
1333 efrain 269
 
1336 efrain 270
 
1333 efrain 271
        'own-professional-network',
272
        'organizational-design',
273
        'planning-objectives-and-goals',
2228 nelberth 274
        'planning-objectives-and-goals/objectives',
3462 nelberth 275
        'planning-objectives-and-goals/objectives/report',
2331 nelberth 276
        'planning-objectives-and-goals/objectives/goals',
2379 nelberth 277
        'planning-objectives-and-goals/objectives/goals/add',
278
        'planning-objectives-and-goals/objectives/goals/edit',
279
        'planning-objectives-and-goals/objectives/goals/delete',
2517 nelberth 280
        'planning-objectives-and-goals/objectives/goals/task',
281
        'planning-objectives-and-goals/objectives/goals/task/add',
282
        'planning-objectives-and-goals/objectives/goals/task/edit',
283
        'planning-objectives-and-goals/objectives/goals/task/delete',
2822 nelberth 284
        'planning-objectives-and-goals/objectives/goals/task/view',
2228 nelberth 285
        'planning-objectives-and-goals/objectives/add',
286
        'planning-objectives-and-goals/objectives/delete',
287
        'planning-objectives-and-goals/objectives/edit',
1333 efrain 288
        'development-and-training',
289
        'induction',
290
        'organizational-climate',
291
        'culture',
292
        'communication',
293
        'career-development',
294
        'surveys',
295
        'building-my-future',
296
        'high-performance-teams',
297
        'my-trainer',
1 www 298
    ];
299
}
300
 
779 geraldo 301
function getAclRolesCompany() {
1 www 302
    return [
303
        'creator' => [
304
            'home',
305
            'signin-admin',
306
            'signin-company',
307
            'dashboard',
308
            'signout',
309
            'storage',
310
            'profile',
311
            'profile/extended',
312
            'profile/cover',
313
            'profile/image',
779 geraldo 314
            'profile/header',
315
            'profile/footer',
1 www 316
            'profile/website',
317
            'profile/foundation_year',
318
            'profile/location',
319
            'profile/social-network',
320
            'profile/company-size',
321
            'profile/industry',
322
            'profile/delete',
323
            'users',
324
            'users/change-password',
325
            'users/unblock',
326
            'users/invite',
327
            'users/accept',
328
            'users/cancel',
329
            'users/reject',
330
            'users/edit',
331
            'users/upload',
332
            'feeds',
333
            'feeds/timeline',
334
            'feeds/delete',
335
            'feeds/comments',
336
            'feeds/comments/delete',
337
            'feeds/add',
338
            'followers',
339
            'followers/delete',
340
            'jobs',
341
            'jobs/add',
342
            'jobs/delete',
343
            'jobs/users-who-applied',
344
            'jobs/edit',
345
            'jobs/edit/title',
346
            'jobs/edit/status',
347
            'jobs/edit/last-date-of-application',
348
            'jobs/edit/employment-type',
349
            'jobs/edit/experience',
350
            'jobs/edit/job-category',
351
            'jobs/edit/extended',
352
            'jobs/edit/location',
353
            'jobs/edit/salary',
354
            'jobs/edit/languages',
355
            'jobs/edit/degrees',
356
            'jobs/edit/skills',
357
            'jobs/edit/how-apply',
26 efrain 358
            'settings',
28 efrain 359
            'settings/competency-types',
360
            'settings/competency-types/add',
361
            'settings/competency-types/edit',
362
            'settings/competency-types/delete',
363
            'settings/competency-types/import',
1102 geraldo 364
            'settings/behaviors',
365
            'settings/behaviors/add',
1138 geraldo 366
            'settings/behaviors/edit',
26 efrain 367
            'settings/competencies',
27 efrain 368
            'settings/competencies/add',
369
            'settings/competencies/edit',
370
            'settings/competencies/delete',
28 efrain 371
            'settings/competencies/import',
372
            'settings/jobs-description',
373
            'settings/jobs-description/add',
374
            'settings/jobs-description/edit',
375
            'settings/jobs-description/delete',
561 geraldo 376
            'settings/jobs-description/report',
846 geraldo 377
            'settings/jobs-description/import',
67 efrain 378
            'settings/positions',
379
            'settings/positions/add',
380
            'settings/positions/edit',
381
            'settings/positions/delete',
1320 efrain 382
            'settings/positions/subordinates',
383
            //'test',
384
            //'test/method-one',
385
            //'test/method-two',
386
            //'test/method-three',
387
            //'test/method-four',
1336 efrain 388
 
1333 efrain 389
 
390
            'own-professional-network',
391
            'organizational-design',
392
            'development-and-training',
1477 efrain 393
            'recruitment-and-selection',
394
            'recruitment-and-selection/vacancies',
395
            'recruitment-and-selection/vacancies/add',
396
            'recruitment-and-selection/vacancies/edit',
397
            'recruitment-and-selection/vacancies/delete',
398
            'recruitment-and-selection/candidates',
399
            'recruitment-and-selection/candidates/add',
400
            'recruitment-and-selection/candidates/edit',
401
            'recruitment-and-selection/candidates/delete',
1636 eleazar 402
            'recruitment-and-selection/user-by-email',
1710 eleazar 403
            'recruitment-and-selection/interview',
1709 eleazar 404
            'recruitment-and-selection/interview/form',
405
            'recruitment-and-selection/interview/form/add',
406
            'recruitment-and-selection/interview/form/edit',
407
            'recruitment-and-selection/interview/form/delete',
408
            'recruitment-and-selection/interview/report',
3587 eleazar 409
            'recruitment-and-selection/interview/vacancy',
1333 efrain 410
            'induction',
411
            'organizational-climate',
412
            'culture',
413
            'communication',
414
            'career-development',
415
            'surveys',
416
            'building-my-future',
417
            'high-performance-teams',
418
            'my-trainer',
1918 nelberth 419
 
420
            'planning-objectives-and-goals',
2228 nelberth 421
            'planning-objectives-and-goals/objectives',
3462 nelberth 422
            'planning-objectives-and-goals/objectives/report',
2331 nelberth 423
            'planning-objectives-and-goals/objectives/goals',
2379 nelberth 424
            'planning-objectives-and-goals/objectives/goals/add',
425
            'planning-objectives-and-goals/objectives/goals/edit',
426
            'planning-objectives-and-goals/objectives/goals/delete',
2228 nelberth 427
            'planning-objectives-and-goals/objectives/add',
428
            'planning-objectives-and-goals/objectives/delete',
2518 nelberth 429
            'planning-objectives-and-goals/objectives/edit',
430
            'planning-objectives-and-goals/objectives/goals/task',
431
            'planning-objectives-and-goals/objectives/goals/task/add',
432
        'planning-objectives-and-goals/objectives/goals/task/edit',
433
        'planning-objectives-and-goals/objectives/goals/task/delete',
2822 nelberth 434
        'planning-objectives-and-goals/objectives/goals/task/view',
779 geraldo 435
        ],
436
        'creator-self-evaluation' => [
114 efrain 437
            'self-evaluation',
438
            'self-evaluation/forms',
439
            'self-evaluation/forms/add',
440
            'self-evaluation/forms/edit',
441
            'self-evaluation/forms/delete',
115 efrain 442
            'self-evaluation/users',
443
            'self-evaluation/users/add',
444
            'self-evaluation/users/delete',
114 efrain 445
            'self-evaluation/reviews',
115 efrain 446
            'self-evaluation/reviews/edit',
470 geraldo 447
            'self-evaluation/reviews/report',
1 www 448
        ],
974 geraldo 449
        'creator-performance-evaluation' => [
450
            'performance-evaluation',
451
            'performance-evaluation/forms',
452
            'performance-evaluation/forms/add',
453
            'performance-evaluation/forms/edit',
454
            'performance-evaluation/forms/delete',
1263 geraldo 455
            'performance-evaluation/forms/report',
1320 efrain 456
            'performance-evaluation/reviews',
457
            'performance-evaluation/reviews/pdf',
1383 efrain 458
 
459
            'performance-evaluation/evaluations',
460
            'performance-evaluation/evaluations/add',
461
            'performance-evaluation/evaluations/edit',
462
            'performance-evaluation/evaluations/delete',
463
            'performance-evaluation/evaluations/users',
464
            'performance-evaluation/evaluations/users/add',
465
            'performance-evaluation/evaluations/users/delete',
974 geraldo 466
        ],
1 www 467
        'creator-microlearning' => [
468
            'microlearning',
469
            'microlearning/overview',
470
            'microlearning/reports',
2 efrain 471
            'microlearning/reports/progress',
472
            'microlearning/reports/devices',
187 efrain 473
            'microlearning/reports/comments-for-capsule',
1 www 474
            'microlearning/content',
475
            'microlearning/content/topics',
476
            'microlearning/content/topics/add',
477
            'microlearning/content/topics/edit',
478
            'microlearning/content/topics/delete',
479
            'microlearning/content/capsules',
480
            'microlearning/content/capsules/add',
481
            'microlearning/content/capsules/edit',
482
            'microlearning/content/capsules/delete',
483
            'microlearning/content/capsules/users',
484
            'microlearning/content/slides',
485
            'microlearning/content/slides/add',
486
            'microlearning/content/slides/edit',
487
            'microlearning/content/slides/delete',
488
            'microlearning/content/slides/text',
66 efrain 489
            'microlearning/content/quizzes',
490
            'microlearning/content/quizzes/add',
491
            'microlearning/content/quizzes/edit',
492
            'microlearning/content/quizzes/delete',
493
            'microlearning/content/quizzes/check',
494
            'microlearning/content/quizzes/publish',
495
            'microlearning/content/quizzes/copy',
496
            'microlearning/content/quizzes/questions',
497
            'microlearning/content/quizzes/questions/add',
498
            'microlearning/content/quizzes/questions/edit',
499
            'microlearning/content/quizzes/questions/delete',
500
            'microlearning/content/quizzes/questions/answers',
501
            'microlearning/content/quizzes/questions/answers/add',
502
            'microlearning/content/quizzes/questions/answers/edit',
503
            'microlearning/content/quizzes/questions/answers/delete',
1 www 504
            'microlearning/students',
505
            'microlearning/students/edit',
506
            'microlearning/students/timeline',
507
            'microlearning/students/change-password',
508
            'microlearning/students/unblock',
509
            'microlearning/access-for-students',
510
            'microlearning/access-for-students/revoke',
511
            'microlearning/access-for-students/unlimit',
512
            'microlearning/access-for-students/cancel',
513
            'microlearning/access-for-students/reactive',
514
            'microlearning/access-for-students/upload',
515
            'microlearning/access-for-students/notification',
516
            'microlearning/settings',
517
            'microlearning/settings/student-types',
518
            'microlearning/settings/student-types/add',
519
            'microlearning/settings/student-types/edit',
520
            'microlearning/settings/student-types/delete',
521
            'microlearning/settings/functions',
522
            'microlearning/settings/functions/add',
523
            'microlearning/settings/functions/edit',
524
            'microlearning/settings/functions/delete',
525
            'microlearning/settings/sectors',
526
            'microlearning/settings/sectors/add',
527
            'microlearning/settings/sectors/edit',
528
            'microlearning/settings/sectors/delete',
529
            'microlearning/settings/programs',
530
            'microlearning/settings/programs/add',
531
            'microlearning/settings/programs/edit',
532
            'microlearning/settings/programs/delete',
533
            'microlearning/settings/groups',
534
            'microlearning/settings/groups/add',
535
            'microlearning/settings/groups/edit',
536
            'microlearning/settings/groups/delete',
537
            'microlearning/settings/companies',
538
            'microlearning/settings/companies/add',
539
            'microlearning/settings/companies/edit',
540
            'microlearning/settings/companies/delete',
541
            'microlearning/settings/partners',
542
            'microlearning/settings/partners/add',
543
            'microlearning/settings/partners/edit',
544
            'microlearning/settings/partners/delete',
545
            'microlearning/settings/institutions',
546
            'microlearning/settings/institutions/add',
547
            'microlearning/settings/institutions/edit',
548
            'microlearning/settings/institutions/delete',
549
        ],
4 efrain 550
        'company-creator' => [
551
            'home',
552
            'signin-admin',
553
            'signin-company',
554
            'dashboard',
555
            'signout',
556
            'storage',
557
            'profile',
558
            'profile/extended',
559
            'profile/cover',
779 geraldo 560
            'profile/header',
561
            'profile/footer',
4 efrain 562
            'profile/image',
563
            'profile/website',
564
            'profile/foundation_year',
565
            'profile/location',
566
            'profile/social-network',
567
            'profile/company-size',
568
            'profile/industry',
569
            'profile/delete',
570
            'users',
571
            'users/change-password',
572
            'users/unblock',
573
            'users/invite',
574
            'users/accept',
575
            'users/cancel',
576
            'users/reject',
577
            'users/edit',
578
            'users/upload',
579
            'feeds',
580
            'followers',
581
            'followers/delete',
582
            'jobs',
583
            'jobs/add',
584
            'jobs/delete',
585
            'jobs/users-who-applied',
586
            'jobs/status',
587
            'jobs/edit',
588
            'jobs/edit/last-date-of-application',
589
            'jobs/edit/employment-type',
590
            'jobs/edit/experience',
591
            'jobs/edit/job-category',
592
            'jobs/edit/extended',
593
            'jobs/edit/location',
594
            'jobs/edit/salary',
595
            'jobs/edit/languages',
596
            'jobs/edit/degrees',
597
            'jobs/edit/skills',
598
            'jobs/edit/how-apply',
25 efrain 599
            'settings',
28 efrain 600
            'settings/competency-types',
601
            'settings/competency-types/add',
602
            'settings/competency-types/edit',
603
            'settings/competency-types/delete',
604
            'settings/competency-types/import',
1102 geraldo 605
            'settings/behaviors',
606
            'settings/behaviors/add',
1138 geraldo 607
            'settings/behaviors/edit',
25 efrain 608
            'settings/competencies',
28 efrain 609
            'settings/competencies/add',
610
            'settings/competencies/edit',
611
            'settings/competencies/delete',
612
            'settings/competencies/import',
613
            'settings/jobs-description',
614
            'settings/jobs-description/add',
615
            'settings/jobs-description/edit',
616
            'settings/jobs-description/delete',
561 geraldo 617
            'settings/jobs-description/report',
846 geraldo 618
            'settings/jobs-description/import',
67 efrain 619
            'settings/positions',
620
            'settings/positions/add',
621
            'settings/positions/edit',
622
            'settings/positions/delete',
1320 efrain 623
            'settings/positions/subordinates',
624
            //'test',
625
            //'test/method-one',
626
            //'test/method-two',
627
            //'test/method-three',
628
            //'test/method-four',
1953 nelberth 629
 
4 efrain 630
        ],
1 www 631
        'company-admin' => [
632
            'home',
633
            'signin-admin',
634
            'signin-company',
635
            'dashboard',
636
            'signout',
637
            'storage',
638
            'profile',
639
            'profile/extended',
640
            'profile/cover',
641
            'profile/image',
779 geraldo 642
            'profile/header',
643
            'profile/footer',
1 www 644
            'profile/website',
645
            'profile/foundation_year',
646
            'profile/location',
647
            'profile/social-network',
648
            'profile/company-size',
649
            'profile/industry',
650
            'profile/delete',
651
            'users',
652
            'users/change-password',
653
            'users/unblock',
654
            'users/invite',
655
            'users/accept',
656
            'users/cancel',
657
            'users/reject',
658
            'users/edit',
659
            'users/upload',
660
            'feeds',
661
            'followers',
662
            'followers/delete',
663
            'jobs',
664
            'jobs/add',
665
            'jobs/delete',
666
            'jobs/users-who-applied',
667
            'jobs/status',
668
            'jobs/edit',
669
            'jobs/edit/last-date-of-application',
670
            'jobs/edit/employment-type',
671
            'jobs/edit/experience',
672
            'jobs/edit/job-category',
673
            'jobs/edit/extended',
674
            'jobs/edit/location',
675
            'jobs/edit/salary',
676
            'jobs/edit/languages',
677
            'jobs/edit/degrees',
678
            'jobs/edit/skills',
679
            'jobs/edit/how-apply',
28 efrain 680
            'settings',
681
            'settings/competency-types',
682
            'settings/competency-types/add',
683
            'settings/competency-types/edit',
684
            'settings/competency-types/delete',
685
            'settings/competency-types/import',
1102 geraldo 686
            'settings/behaviors',
687
            'settings/behaviors/add',
1138 geraldo 688
            'settings/behaviors/edit',
28 efrain 689
            'settings/competencies',
690
            'settings/competencies/add',
691
            'settings/competencies/edit',
692
            'settings/competencies/delete',
693
            'settings/competencies/import',
694
            'settings/jobs-description',
695
            'settings/jobs-description/add',
696
            'settings/jobs-description/edit',
697
            'settings/jobs-description/delete',
561 geraldo 698
            'settings/jobs-description/report',
846 geraldo 699
            'settings/jobs-description/import',
67 efrain 700
            'settings/positions',
701
            'settings/positions/add',
702
            'settings/positions/edit',
703
            'settings/positions/delete',
1320 efrain 704
            'settings/positions/subordinate',
705
            //'test',
706
            //'test/method-one',
707
            //'test/method-two',
708
            //'test/method-three',
709
            //'test/method-four',
1953 nelberth 710
            'planning-objectives-and-goals',
2228 nelberth 711
            'planning-objectives-and-goals/objectives',
3462 nelberth 712
            'planning-objectives-and-goals/objectives/report',
2331 nelberth 713
            'planning-objectives-and-goals/objectives/goals',
2379 nelberth 714
            'planning-objectives-and-goals/objectives/goals/add',
715
            'planning-objectives-and-goals/objectives/goals/edit',
716
            'planning-objectives-and-goals/objectives/goals/delete',
2228 nelberth 717
            'planning-objectives-and-goals/objectives/add',
718
            'planning-objectives-and-goals/objectives/delete',
2518 nelberth 719
            'planning-objectives-and-goals/objectives/edit',
720
            'planning-objectives-and-goals/objectives/goals/task',
721
            'planning-objectives-and-goals/objectives/goals/task/add',
722
        'planning-objectives-and-goals/objectives/goals/task/edit',
723
        'planning-objectives-and-goals/objectives/goals/task/delete',
2822 nelberth 724
        'planning-objectives-and-goals/objectives/goals/task/view',
1 www 725
        ],
726
        'company-password-unblock' => [
727
            'home',
728
            'signin-admin',
729
            'signin-company',
730
            'dashboard',
731
            'signout',
732
            'storage',
733
            'users',
734
            'users/change-password',
735
            'users/unblock',
736
        ],
737
        'microlearning-admin' => [
738
            'home',
739
            'signin-admin',
740
            'signin-company',
741
            'dashboard',
742
            'signout',
743
            'storage',
744
            'microlearning',
745
            'microlearning/overview',
187 efrain 746
            'microlearning/reports',
747
            'microlearning/reports/progress',
748
            'microlearning/reports/devices',
749
            'microlearning/reports/comments-for-capsule',
1 www 750
            'microlearning/content',
751
            'microlearning/content/topics',
752
            'microlearning/content/topics/add',
753
            'microlearning/content/topics/edit',
754
            'microlearning/content/topics/delete',
755
            'microlearning/content/capsules',
756
            'microlearning/content/capsules/add',
757
            'microlearning/content/capsules/edit',
758
            'microlearning/content/capsules/delete',
759
            'microlearning/content/capsules/users',
760
            'microlearning/content/slides',
761
            'microlearning/content/slides/add',
762
            'microlearning/content/slides/edit',
763
            'microlearning/content/slides/delete',
764
            'microlearning/content/slides/text',
765
            'microlearning/students',
766
            'microlearning/students/edit',
767
            'microlearning/students/timeline',
768
            'microlearning/access-for-students',
769
            'microlearning/access-for-students/revoke',
770
            'microlearning/access-for-students/unlimit',
771
            'microlearning/access-for-students/cancel',
772
            'microlearning/access-for-students/reactive',
773
            'microlearning/access-for-students/upload',
774
            'microlearning/access-for-students/notification',
775
            'microlearning/settings',
776
            'microlearning/settings/student-types',
777
            'microlearning/settings/student-types/add',
778
            'microlearning/settings/student-types/edit',
779
            'microlearning/settings/student-types/delete',
780
            'microlearning/settings/functions',
781
            'microlearning/settings/functions/add',
782
            'microlearning/settings/functions/edit',
783
            'microlearning/settings/functions/delete',
784
            'microlearning/settings/sectors',
785
            'microlearning/settings/sectors/add',
786
            'microlearning/settings/sectors/edit',
787
            'microlearning/settings/sectors/delete',
788
            'microlearning/settings/programs',
789
            'microlearning/settings/programs/add',
790
            'microlearning/settings/programs/edit',
791
            'microlearning/settings/programs/delete',
792
            'microlearning/settings/groups',
793
            'microlearning/settings/groups/add',
794
            'microlearning/settings/groups/edit',
795
            'microlearning/settings/groups/delete',
796
            'microlearning/settings/companies',
797
            'microlearning/settings/companies/add',
798
            'microlearning/settings/companies/edit',
799
            'microlearning/settings/companies/delete',
800
            'microlearning/settings/partners',
801
            'microlearning/settings/partners/add',
802
            'microlearning/settings/partners/edit',
803
            'microlearning/settings/partners/delete',
804
            'microlearning/settings/institutions',
805
            'microlearning/settings/institutions/add',
806
            'microlearning/settings/institutions/edit',
807
            'microlearning/settings/institutions/delete',
808
        ],
809
        'microlearning-editor' => [
810
            'home',
811
            'signin-admin',
812
            'signin-company',
813
            'dashboard',
814
            'signout',
815
            'storage',
816
            'microlearning',
817
            'microlearning/content',
818
            'microlearning/content/topics',
819
            'microlearning/content/topics/add',
820
            'microlearning/content/topics/edit',
821
            'microlearning/content/topics/delete',
822
            'microlearning/content/capsules',
823
            'microlearning/content/capsules/add',
824
            'microlearning/content/capsules/edit',
825
            'microlearning/content/capsules/delete',
826
            'microlearning/content/capsules/users',
827
            'microlearning/content/slides',
828
            'microlearning/content/slides/add',
829
            'microlearning/content/slides/edit',
830
            'microlearning/content/slides/delete',
831
            'microlearning/content/slides/text',
832
            'microlearning/access-for-students',
833
            'microlearning/access-for-students/revoke',
834
            'microlearning/access-for-students/unlimit',
835
            'microlearning/access-for-students/cancel',
836
            'microlearning/access-for-students/reactive',
837
            'microlearning/access-for-students/upload',
838
            'microlearning/access-for-students/notification',
839
        ],
840
        'microlearning-students-password-unblock' => [
841
            'home',
842
            'signin-admin',
843
            'signin-company',
844
            'dashboard',
845
            'signout',
846
            'storage',
847
            'microlearning',
848
            'microlearning/students',
849
            'microlearning/students/change-password',
850
            'microlearning/students/unblock',
851
        ],
852
        'self-evaluation-admin' => [
114 efrain 853
            'self-evaluation',
854
            'self-evaluation/forms',
855
            'self-evaluation/forms/add',
856
            'self-evaluation/forms/edit',
857
            'self-evaluation/forms/delete',
115 efrain 858
            'self-evaluation/users',
859
            'self-evaluation/users/add',
860
            'self-evaluation/users/delete',
114 efrain 861
            'self-evaluation/reviews',
115 efrain 862
            'self-evaluation/reviews/edit',
470 geraldo 863
            'self-evaluation/reviews/report',
1 www 864
        ],
975 geraldo 865
        'performance-evaluation-admin' => [
866
            'performance-evaluation',
867
            'performance-evaluation/forms',
868
            'performance-evaluation/forms/add',
869
            'performance-evaluation/forms/edit',
870
            'performance-evaluation/forms/delete',
1263 geraldo 871
            'performance-evaluation/forms/report',
1320 efrain 872
            'performance-evaluation/reviews',
873
            'performance-evaluation/reviews/pdf',
1383 efrain 874
 
875
            'performance-evaluation/evaluations',
876
            'performance-evaluation/evaluations/add',
877
            'performance-evaluation/evaluations/edit',
878
            'performance-evaluation/evaluations/delete',
879
            'performance-evaluation/evaluations/users',
880
            'performance-evaluation/evaluations/users/add',
881
            'performance-evaluation/evaluations/users/delete',
882
 
975 geraldo 883
        ],
779 geraldo 884
    ];
1 www 885
}
886
 
779 geraldo 887
function getAclUsertype() {
1 www 888
    return [
889
        UserType::ADMIN => [
890
            'home',
891
            'signin-admin',
892
            'signin-company',
893
            'dashboard',
894
            'signout',
895
            'storage',
896
            'settings',
897
            'settings/company-sizes',
898
            'settings/company-sizes/add',
899
            'settings/company-sizes/edit',
900
            'settings/company-sizes/delete',
901
            'settings/competency-types',
902
            'settings/competency-types/add',
903
            'settings/competency-types/edit',
904
            'settings/competency-types/delete',
1102 geraldo 905
            'settings/behaviors',
906
            'settings/behaviors/add',
1138 geraldo 907
            'settings/behaviors/edit',
1 www 908
            'settings/competencies',
909
            'settings/competencies/add',
910
            'settings/competencies/edit',
911
            'settings/competencies/delete',
912
            'settings/degrees',
913
            'settings/degrees/add',
914
            'settings/degrees/edit',
915
            'settings/degrees/delete',
916
            'settings/email-templates',
917
            'settings/email-templates/edit',
918
            'settings/push-templates',
919
            'settings/push-templates/edit',
920
            'settings/group-types',
921
            'settings/group-types/add',
922
            'settings/group-types/edit',
923
            'settings/group-types/delete',
924
            'settings/industries',
925
            'settings/industries/add',
926
            'settings/industries/edit',
927
            'settings/industries/delete',
928
            'settings/job-categories',
929
            'settings/job-categories/add',
930
            'settings/job-categories/edit',
931
            'settings/job-categories/delete',
838 geraldo 932
            'settings/jobs-description',
933
            'settings/jobs-description/add',
934
            'settings/jobs-description/edit',
935
            'settings/jobs-description/delete',
1 www 936
            'settings/skills',
937
            'settings/skills/add',
938
            'settings/skills/edit',
939
            'settings/skills/delete',
940
            'publications',
941
            'publications/posts',
942
            'publications/posts/add',
943
            'publications/posts/edit',
944
            'publications/posts/delete',
945
            'publications/pages',
946
            'publications/pages/add',
947
            'publications/pages/edit',
948
            'publications/pages/delete',
949
            'companies',
950
            'companies/edit',
951
            'companies/services',
952
            'companies/roles',
953
            'users',
954
            'users/change-password',
955
            'users/unblock',
129 efrain 956
            'users/email-verify',
1 www 957
        ],
958
        UserType::USER => [
959
            'home',
960
            'signin-admin',
961
            'signin-company',
962
            'dashboard',
963
            'signout',
964
            'storage',
1916 nelberth 965
 
1 www 966
        ],
967
        UserType::GUEST => [
968
            'home',
969
            'signin-admin',
970
            'signin-company',
971
            'signout',
1916 nelberth 972
 
1 www 973
        ],
974
    ];
975
}
976
 
779 geraldo 977
function getAclMenuSystem() {
1 www 978
    return [
979
        [
980
            'label' => 'LABEL_HOME',
981
            'route' => 'dashboard',
982
            'class' => 'fa fa-home'
983
        ],
984
        [
985
            'label' => 'LABEL_COMPANIES',
986
            'route' => 'companies',
987
            'class' => 'fa fa-building',
988
        ],
989
        [
990
            'label' => 'LABEL_SETTINGS',
991
            'route' => 'settings',
992
            'class' => 'fa fa-cog',
993
            'pages' => [
994
                [
995
                    'label' => 'LABEL_JOB_CATEGORIES',
996
                    'route' => 'settings/job-categories',
997
                ],
998
                [
999
                    'label' => 'LABEL_COMPETENCIES',
1000
                    'route' => 'settings/competencies',
1001
                ],
1002
                [
1003
                    'label' => 'LABEL_EMAIL_TEMPLATES',
1004
                    'route' => 'settings/email-templates',
1005
                ],
1006
                [
1007
                    'label' => 'LABEL_PUSH_TEMPLATES',
1008
                    'route' => 'settings/push-templates',
1009
                ],
1010
                [
1011
                    'label' => 'LABEL_DEGREES',
1012
                    'route' => 'settings/degrees',
1013
                ],
1014
                [
1015
                    'label' => 'LABEL_SKILLS',
1016
                    'route' => 'settings/skills',
1017
                ],
1018
                [
1019
                    'label' => 'LABEL_INDUSTRIES',
1020
                    'route' => 'settings/industries',
1021
                ],
1022
                [
837 geraldo 1023
                    'label' => 'LABEL_JOBS_DESCRIPTION',
836 geraldo 1024
                    'route' => 'settings/jobs-description',
1025
                ],
1026
                [
1 www 1027
                    'label' => 'LABEL_COMPANY_SIZES',
1028
                    'route' => 'settings/company-sizes',
1029
                ],
1030
                [
1031
                    'label' => 'LABEL_COMPETENCY_TYPES',
1032
                    'route' => 'settings/competency-types',
1033
                ],
1034
                [
1035
                    'label' => 'LABEL_GROUP_TYPES',
1036
                    'route' => 'settings/group-types',
1037
                ],
1038
            ]
1039
        ],
1040
        [
1041
            'label' => 'LABEL_PUBLICATIONS',
1042
            'route' => 'publications',
1043
            'class' => 'fa fa-book',
1044
            'pages' => [
1045
                [
1046
                    'label' => 'LABEL_PAGES',
1047
                    'route' => 'publications/pages',
1048
                ],
1049
                [
1050
                    'label' => 'LABEL_POSTS',
1051
                    'route' => 'publications/posts',
1052
                ],
1053
            ]
1054
        ],
1055
        [
1056
            'label' => 'LABEL_USERS',
1057
            'route' => 'users',
1058
            'class' => 'fa fa-users',
779 geraldo 1059
        /* 'pages' => [
1060
          [
1061
          'label' => 'LABEL_PAGES',
1062
          'route' => 'publications/pages',
1063
          ],
1064
 
1065
          ] */
1 www 1066
        ],
1333 efrain 1067
 
1068
 
1069
 
1070
 
1071
        [
1 www 1072
            'label' => 'LABEL_LOGOUT',
1073
            'route' => 'signout',
1074
            'class' => 'fa fa-sign-out',
1075
        ]
779 geraldo 1076
    ];
1 www 1077
}
1078
 
779 geraldo 1079
function getAclMenuCompany() {
1080
 
1 www 1081
    return [
1082
        [
1083
            'label' => 'LABEL_HOME',
1084
            'route' => 'dashboard',
1085
            'class' => 'fa fa-home'
1086
        ],
1087
        [
1088
            'label' => 'LABEL_JOBS',
1089
            'route' => 'jobs',
1090
            'class' => 'fa fa-briefcase'
1091
        ],
1092
        [
1093
            'label' => 'LABEL_FEEDS',
1094
            'route' => 'feeds',
1095
            'class' => 'fa fa-rss'
1096
        ],
114 efrain 1097
        [
1098
            'label' => 'LABEL_SELF_EVALUATION',
1099
            'route' => 'self-evaluation',
1100
            'class' => 'fa fa-book',
1101
            'pages' => [
1102
                [
1103
                    'label' => 'LABEL_FORMS',
1104
                    'route' => 'self-evaluation/forms',
1105
                ],
115 efrain 1106
                [
1107
                    'label' => 'LABEL_USERS',
1108
                    'route' => 'self-evaluation/users',
246 geraldo 1109
                ],
1110
                [
1111
                    'label' => 'LABEL_REVIEWS',
1112
                    'route' => 'self-evaluation/reviews',
245 geraldo 1113
                ]
779 geraldo 1114
            ],
1115
        ],
1 www 1116
        [
1117
            'label' => 'LABEL_MICRO_LEARNING',
1118
            'route' => 'microlearning',
1119
            'class' => 'fa fa-book',
1120
            'pages' => [
1121
                [
1122
                    'label' => 'LABEL_OVERVIEW',
1123
                    'route' => 'microlearning/overview',
1124
                ],
1125
                [
1126
                    'label' => 'LABEL_REPORTS',
1127
                    'route' => 'microlearning/reports',
2 efrain 1128
                    'pages' => [
1129
                        [
1130
                            'label' => 'LABEL_DEVICES',
1131
                            'route' => 'microlearning/reports/devices',
1132
                        ],
1133
                        [
1134
                            'label' => 'LABEL_PROGRESS',
1135
                            'route' => 'microlearning/reports/progress',
1136
                        ],
779 geraldo 1137
                    ],
1 www 1138
                ],
1139
                [
1140
                    'label' => 'LABEL_CONTENT',
1141
                    'route' => 'microlearning/content',
1142
                    'pages' => [
1143
                        [
66 efrain 1144
                            'label' => 'LABEL_QUIZZES',
1145
                            'route' => 'microlearning/content/quizzes',
1146
                        ],
1147
                        [
1 www 1148
                            'label' => 'LABEL_TOPICS',
1149
                            'route' => 'microlearning/content/topics',
1150
                        ],
1151
                        [
1152
                            'label' => 'LABEL_CAPSULES',
1153
                            'route' => 'microlearning/content/capsules',
1154
                        ],
1155
                        [
1156
                            'label' => 'LABEL_SLIDES',
1157
                            'route' => 'microlearning/content/slides',
1158
                        ],
1159
                    ]
1160
                ],
1161
                [
1162
                    'label' => 'LABEL_ACCESS_FOR_STUDENTS',
1163
                    'route' => 'microlearning/access-for-students',
1164
                ],
1165
                [
1166
                    'label' => 'LABEL_STUDENTS',
1167
                    'route' => 'microlearning/students',
1168
                ],
1169
                [
1170
                    'label' => 'LABEL_FILTERS',
1171
                    'route' => 'microlearning/settings',
1172
                    'pages' => [
1173
                        [
1174
                            'label' => 'LABEL_COMPANIES',
1175
                            'route' => 'microlearning/settings/companies',
1176
                        ],
1177
                        [
1178
                            'label' => 'LABEL_FUNCTIONS',
1179
                            'route' => 'microlearning/settings/functions',
1180
                        ],
1181
                        [
1182
                            'label' => 'LABEL_GROUPS',
1183
                            'route' => 'microlearning/settings/groups',
1184
                        ],
1185
                        [
1186
                            'label' => 'LABEL_INSTITUTIONS',
1187
                            'route' => 'microlearning/settings/institutions',
1188
                        ],
1189
                        [
1190
                            'label' => 'LABEL_PROGRAMS',
1191
                            'route' => 'microlearning/settings/programs',
1192
                        ],
1193
                        [
1194
                            'label' => 'LABEL_PARTNERS',
1195
                            'route' => 'microlearning/settings/partners',
1196
                        ],
1197
                        [
1198
                            'label' => 'LABEL_SECTORS',
1199
                            'route' => 'microlearning/settings/sectors',
1200
                        ],
1201
                        [
1202
                            'label' => 'LABEL_STUDENT_TYPES',
1203
                            'route' => 'microlearning/settings/student-types',
1204
                        ],
779 geraldo 1205
                    ],
1 www 1206
                ]
1207
            ]
1208
        ],
1209
        [
560 geraldo 1210
            'label' => 'LABEL_JOB_POSITION',
28 efrain 1211
            'route' => 'settings',
1212
            'class' => 'fa fa-book',
1213
            'pages' => [
1214
                [
66 efrain 1215
                    'label' => 'LABEL_JOBS_DESCRIPTION',
1216
                    'route' => 'settings/jobs-description',
28 efrain 1217
                ],
1218
                [
1219
                    'label' => 'LABEL_COMPETENCIES',
1220
                    'route' => 'settings/competencies',
1221
                ],
66 efrain 1222
                [
1223
                    'label' => 'LABEL_COMPETENCY_TYPES',
1224
                    'route' => 'settings/competency-types',
1225
                ],
67 efrain 1226
                [
1227
                    'label' => 'LABEL_POSITIONS',
1228
                    'route' => 'settings/positions',
1229
                ],
28 efrain 1230
            ]
779 geraldo 1231
        ],
22 steven 1232
        [
1090 geraldo 1233
            'label' => 'LABEL_PERFORMANCE_EVALUATION_MENU',
976 geraldo 1234
            'route' => 'performance-evaluation',
1235
            'class' => 'fa fa-book',
1236
            'pages' => [
1237
                [
1238
                    'label' => 'LABEL_FORMS',
1239
                    'route' => 'performance-evaluation/forms',
1240
                ],
1383 efrain 1241
 
976 geraldo 1242
                [
1383 efrain 1243
                    'label' => 'LABEL_TESTS',
1244
                    'route' => 'performance-evaluation/evaluations',
1245
                ]
976 geraldo 1246
            ],
946 geraldo 1247
        ],
1332 eleazar 1248
       /* [
1321 eleazar 1249
            'label' => 'LABEL_JOB_INTERVIEW_MENU',
1250
            'route' => 'JobInterview',
1251
            'class' => 'fa fa-book',
1252
            'pages' => [
1253
                [
1254
                    'label' => 'LABEL_FORMS',
1255
                    'route' => 'JobInterview/forms',
1256
                ],
1257
                [
1258
                    'label' => 'LABEL_REVIEWS',
1259
                    'route' => 'JobInterview/reviews',
1260
                ]
1261
            ],
1332 eleazar 1262
        ],*/
1321 eleazar 1263
        [
1 www 1264
            'label' => 'LABEL_PROFILE',
1265
            'route' => 'profile',
1266
            'class' => 'fa fa-picture-o'
1267
        ],
1268
        [
1269
            'label' => 'LABEL_FOLLOWERS',
1270
            'route' => 'followers',
1271
            'class' => 'fa fa-heart'
1272
        ],
1273
        [
1274
            'label' => 'LABEL_USERS',
1275
            'route' => 'users',
1276
            'class' => 'fa fa-users',
1277
        ],
1334 efrain 1278
 
1 www 1279
        [
1334 efrain 1280
            'label' => 'LABEL_OWN_PROFESSIONAL_NETWORK',
1281
            'route' => 'own-professional-network',
1282
            'class' => 'fa fa-book',
1283
        ],
1284
 
1285
        [
1286
            'label' => 'LABEL_ORGANIZATIONAL_DESIGN',
1287
            'route' =>  'organizational-design',
1288
            'class' => 'fa fa-book',
1289
        ],
1290
 
1291
        [
1292
            'label' => 'LABEL_PLANNING_OBJECTIVES_AND_GOALS',
2238 nelberth 1293
            'route' => 'planning-objectives-and-goals/objectives',
3462 nelberth 1294
            'planning-objectives-and-goals/objectives/report',
1689 nelberth 1295
            'class' => 'fa fa-street-view',
1334 efrain 1296
        ],
1297
 
1298
 
1299
        [
1300
            'label' => 'LABEL_DEVELOPMENT_AND_TRAINING',
1301
            'route' => 'development-and-training',
1302
            'class' => 'fa fa-book',
1303
        ],
1304
 
1305
 
1306
        [
1307
            'label' => 'LABEL_RECRUITMENT_AND_SELECTION',
1477 efrain 1308
            'route' => 'recruitment-and-selection',
1334 efrain 1309
            'class' => 'fa fa-book',
1342 eleazar 1310
            'pages' => [
1311
                [
1463 eleazar 1312
                    'label' => 'LABEL_VACANCIES',
1478 eleazar 1313
                    'route' => 'recruitment-and-selection/vacancies',
1342 eleazar 1314
                ],
1459 eleazar 1315
 
1316
                [
1317
                    'label' => 'LABEL_CANDIDATES',
1478 eleazar 1318
                    'route' => 'recruitment-and-selection/candidates',
1709 eleazar 1319
                ],
1320
                [
1321
                    'label' => 'LABEL_INTERVIEW',
1322
                    'route' => 'recruitment-and-selection/interview',
1323
                    'pages' => [
1324
                        [
1325
                            'label' => 'LABEL_FORM',
1326
                            'route' => 'recruitment-and-selection/interview/form',
1327
                        ],
1328
                        [
1329
                            'label' => 'LABEL_REPORT',
1330
                            'route' => 'recruitment-and-selection/interview/report'
1331
                        ],
1332
                    ]
1463 eleazar 1333
                ]
1342 eleazar 1334
             ],
1334 efrain 1335
        ],
1336
 
1337
        [
1338
            'label' => 'LABEL_INDUCTION',
1339
            'route' => 'induction',
1340
            'class' => 'fa fa-book',
1341
        ],
1342
 
1343
 
1344
        [
1345
            'label' => 'LABEL_ORGANIZATIONAL_CLIMATE',
1346
            'route' => 'organizational-climate',
1347
            'class' => 'fa fa-book',
1348
        ],
1349
 
1350
        [
1351
            'label' => 'LABEL_CULTURE',
1352
            'route' =>  'culture',
1353
            'class' => 'fa fa-book',
1354
        ],
1355
 
1356
        [
1357
            'label' => 'LABEL_COMMUNICATION',
1358
            'route' =>  'communication',
1359
            'class' => 'fa fa-book',
1360
        ],
1361
 
1362
        [
1363
            'label' => 'LABEL_CAREER_DEVELOPMENT',
1364
            'route' =>  'career-development',
1365
            'class' => 'fa fa-book',
1366
        ],
1367
 
1368
        [
1369
            'label' => 'LABEL_SURVEYS',
1370
            'route' =>  'surveys',
1371
            'class' => 'fa fa-book',
1372
        ],
1373
 
1374
        [
1375
            'label' => 'LABEL_BUILDING_MY_FUTURE',
1376
            'route' =>  'building-my-future',
1377
            'class' => 'fa fa-book',
1378
        ],
1379
 
1380
        [
1381
            'label' => 'LABEL_HIGH_PERFORMANCE_TEAMS',
1382
            'route' =>  'high-performance-teams',
1383
            'class' => 'fa fa-book',
1384
        ],
1385
 
1386
        [
1387
            'label' => 'LABEL_MY_TRAINER',
1388
            'route' => 'my-trainer',
1389
            'class' => 'fa fa-book',
1390
        ],
1391
 
1392
 
1336 efrain 1393
 
1334 efrain 1394
        [
1 www 1395
            'label' => 'LABEL_LOGOUT',
1396
            'route' => 'signout',
1397
            'class' => 'fa fa-sign-out',
1398
        ]
1399
    ];
1400
}