Proyectos de Subversion LeadersLinked - Backend

Rev

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