Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 4047 | Rev 4241 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

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