Proyectos de Subversion LeadersLinked - Backend

Rev

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