Proyectos de Subversion LeadersLinked - Backend

Rev

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