Proyectos de Subversion LeadersLinked - Backend

Rev

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