Proyectos de Subversion LeadersLinked - Backend

Rev

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