Proyectos de Subversion LeadersLinked - Backend

Rev

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