Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16770 | Rev 16787 | 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
 
15579 anderson 5
function getAclResources()
6
{
1 www 7
    return [
8
        'home',
9
        'signin-admin',
10
        'signin-company',
11
        'dashboard',
12
        'signout',
13
        'storage',
15336 efrain 14
        'storage-network',
1 www 15
        'settings',
15460 efrain 16
        'settings/countries',
17
        'settings/countries/add',
18
        'settings/countries/edit',
19
        'settings/countries/delete',
15579 anderson 20
 
1 www 21
        'settings/company-sizes',
22
        'settings/company-sizes/add',
23
        'settings/company-sizes/edit',
24
        'settings/company-sizes/delete',
16766 efrain 25
 
26
        'jobs-description',
27
        'jobs-description/add',
28
        'jobs-description/edit',
29
        'jobs-description/delete',
30
        'jobs-description/report',
31
        'jobs-description/import',
15579 anderson 32
 
15442 efrain 33
        'jobs-description/competency-types',
34
        'jobs-description/competency-types/add',
35
        'jobs-description/competency-types/edit',
36
        'jobs-description/competency-types/delete',
37
        'jobs-description/competency-types/import',
15579 anderson 38
 
15442 efrain 39
        'jobs-description/behaviors',
40
        'jobs-description/behaviors/add',
41
        'jobs-description/behaviors/edit',
42
        'jobs-description/behaviors/delete',
43
        'jobs-description/behaviors/import',
15579 anderson 44
 
15442 efrain 45
        'jobs-description/competencies',
46
        'jobs-description/competencies/add',
47
        'jobs-description/competencies/edit',
48
        'jobs-description/competencies/delete',
49
        'jobs-description/competencies/import',
16766 efrain 50
 
16770 efrain 51
        'organization',
52
        'organization/graph',
53
        'organization/positions',
54
        'organization/positions/add',
55
        'organization/positions/edit',
56
        'organization/positions/delete',
57
        'organization/positions/subordinates',
58
        'organization/positions/subordinates/add',
59
        'organization/positions/subordinates/edit',
60
        'organization/positions/subordinates/delete',
15579 anderson 61
 
16766 efrain 62
 
1 www 63
        'settings/degrees',
64
        'settings/degrees/add',
65
        'settings/degrees/edit',
66
        'settings/degrees/delete',
15579 anderson 67
 
1 www 68
        'settings/email-templates',
69
        'settings/email-templates/edit',
15579 anderson 70
 
1 www 71
        'settings/push-templates',
72
        'settings/push-templates/edit',
15336 efrain 73
        'settings/push-templates/import',
15579 anderson 74
 
1 www 75
        'settings/group-types',
76
        'settings/group-types/add',
77
        'settings/group-types/edit',
78
        'settings/group-types/delete',
15579 anderson 79
 
1 www 80
        'settings/industries',
81
        'settings/industries/add',
82
        'settings/industries/edit',
83
        'settings/industries/delete',
15579 anderson 84
 
1 www 85
        'settings/job-categories',
86
        'settings/job-categories/add',
87
        'settings/job-categories/edit',
88
        'settings/job-categories/delete',
15579 anderson 89
 
90
 
91
 
1 www 92
        'settings/skills',
93
        'settings/skills/add',
94
        'settings/skills/edit',
95
        'settings/skills/delete',
15579 anderson 96
 
15336 efrain 97
        'settings/aptitudes',
98
        'settings/aptitudes/add',
99
        'settings/aptitudes/edit',
100
        'settings/aptitudes/delete',
15579 anderson 101
 
15336 efrain 102
        'settings/hobbies-and-interests',
103
        'settings/hobbies-and-interests/add',
104
        'settings/hobbies-and-interests/edit',
105
        'settings/hobbies-and-interests/delete',
15579 anderson 106
 
15336 efrain 107
        'settings/private-networks',
108
        'settings/private-networks/add',
109
        'settings/private-networks/edit',
110
        'settings/private-networks/delete',
15579 anderson 111
 
15336 efrain 112
        'settings/my-private-network',
113
        'settings/my-private-network/intro',
114
        'settings/my-private-network/navbar',
115
        'settings/my-private-network/favicon',
116
        'settings/my-private-network/logo',
117
        'settings/my-private-network/styles-and-colors',
15394 efrain 118
        'settings/my-private-network/calendar',
15831 efrain 119
        'settings/my-private-network/moodle',
15579 anderson 120
 
1 www 121
        'publications',
122
        'publications/posts',
123
        'publications/posts/add',
124
        'publications/posts/edit',
125
        'publications/posts/delete',
126
        'publications/pages',
127
        'publications/pages/add',
128
        'publications/pages/edit',
129
        'publications/pages/delete',
130
        'users',
131
        'users/change-password',
132
        'users/unblock',
133
        'users/invite',
134
        'users/accept',
135
        'users/cancel',
136
        'users/reject',
137
        'users/edit',
138
        'users/upload',
16248 efrain 139
        'users/change-type',
129 efrain 140
        'users/email-verify',
15457 efrain 141
        'users/request-access',
142
        'users/request-access/approve',
143
        'users/request-access/reject',
15387 efrain 144
 
1 www 145
        'companies',
146
        'companies/edit',
147
        'companies/services',
148
        'companies/roles',
149
        //Company
150
        'profile',
151
        'profile/extended',
152
        'profile/cover',
153
        'profile/image',
779 geraldo 154
        'profile/header',
155
        'profile/footer',
1 www 156
        'profile/website',
157
        'profile/foundation_year',
158
        'profile/location',
159
        'profile/social-network',
160
        'profile/company-size',
161
        'profile/industry',
162
        'profile/delete',
16278 anderson 163
        'profile/view',
15579 anderson 164
 
1 www 165
        'feeds',
166
        'feeds/timeline',
10123 nelberth 167
        'feeds/onefeed',
1 www 168
        'feeds/delete',
169
        'feeds/comments',
170
        'feeds/comments/delete',
8395 nelberth 171
        'feeds/comments/answer',
15364 efrain 172
        'feeds/add',
15579 anderson 173
 
174
 
1 www 175
        'followers',
176
        'followers/delete',
114 efrain 177
        'self-evaluation',
178
        'self-evaluation/forms',
179
        'self-evaluation/forms/add',
180
        'self-evaluation/forms/edit',
181
        'self-evaluation/forms/delete',
115 efrain 182
        'self-evaluation/users',
183
        'self-evaluation/users/add',
184
        'self-evaluation/users/delete',
114 efrain 185
        'self-evaluation/reviews',
115 efrain 186
        'self-evaluation/reviews/edit',
470 geraldo 187
        'self-evaluation/reviews/report',
15579 anderson 188
 
946 geraldo 189
        'performance-evaluation',
190
        'performance-evaluation/forms',
191
        'performance-evaluation/forms/add',
192
        'performance-evaluation/forms/edit',
193
        'performance-evaluation/forms/delete',
15442 efrain 194
        'performance-evaluation/forms/job-description',
195
        'performance-evaluation/forms/active',
196
        'performance-evaluation/forms/inactive',
1263 geraldo 197
        'performance-evaluation/forms/report',
15579 anderson 198
 
199
 
15442 efrain 200
        'performance-evaluation/evaluations',
201
        'performance-evaluation/evaluations/add',
202
        'performance-evaluation/evaluations/delete',
203
        'performance-evaluation/evaluations/report',
204
 
15579 anderson 205
 
1477 efrain 206
        'recruitment-and-selection',
207
        'recruitment-and-selection/vacancies',
208
        'recruitment-and-selection/vacancies/add',
209
        'recruitment-and-selection/vacancies/edit',
210
        'recruitment-and-selection/vacancies/delete',
15461 efrain 211
        'recruitment-and-selection/applications',
212
        'recruitment-and-selection/applications/user-by-email',
213
        'recruitment-and-selection/applications/add',
214
        'recruitment-and-selection/applications/level',
215
        'recruitment-and-selection/applications/status',
216
        'recruitment-and-selection/applications/comment',
217
        'recruitment-and-selection/applications/delete',
218
        'recruitment-and-selection/applications/view',
219
        'recruitment-and-selection/applications/files',
220
        'recruitment-and-selection/applications/files/add',
221
        'recruitment-and-selection/applications/files/delete',
222
        'recruitment-and-selection/applications/files/view',
223
        'recruitment-and-selection/applications/interviews',
224
        'recruitment-and-selection/applications/interviews/add',
225
        'recruitment-and-selection/applications/interviews/edit',
226
        'recruitment-and-selection/applications/interviews/delete',
227
        'recruitment-and-selection/applications/interviews/report',
15579 anderson 228
 
15461 efrain 229
        /*
1477 efrain 230
        'recruitment-and-selection/candidates',
231
        'recruitment-and-selection/candidates/add',
232
        'recruitment-and-selection/candidates/edit',
233
        'recruitment-and-selection/candidates/delete',
1636 eleazar 234
        'recruitment-and-selection/user-by-email',
1710 eleazar 235
        'recruitment-and-selection/interview',
1709 eleazar 236
        'recruitment-and-selection/interview/form',
8757 eleazar 237
        'recruitment-and-selection/interview/form/file',
1709 eleazar 238
        'recruitment-and-selection/interview/form/add',
239
        'recruitment-and-selection/interview/form/edit',
240
        'recruitment-and-selection/interview/form/delete',
241
        'recruitment-and-selection/interview/report',
3587 eleazar 242
        'recruitment-and-selection/interview/vacancy',
4367 eleazar 243
        'recruitment-and-selection/interview/type',
8782 eleazar 244
        'recruitment-and-selection/interview/file',
245
        'recruitment-and-selection/interview/file/add',
246
        'recruitment-and-selection/interview/file/edit',
247
        'recruitment-and-selection/interview/file/delete',
15461 efrain 248
        */
15579 anderson 249
 
4375 eleazar 250
        'survey',
4579 eleazar 251
        'survey/add',
252
        'survey/edit',
253
        'survey/delete',
4375 eleazar 254
        'survey/form',
255
        'survey/form/add',
256
        'survey/form/edit',
257
        'survey/form/delete',
5287 eleazar 258
        'survey/test',
259
        'survey/test/add',
6662 eleazar 260
        'survey/test/report',
5287 eleazar 261
        'survey/test/delete',
5823 eleazar 262
        'survey/report',
6497 eleazar 263
        'survey/report/overview',
5823 eleazar 264
        'survey/report/all',
15149 efrain 265
        'survey/report/excel',
15579 anderson 266
 
7218 eleazar 267
        'organizational-climate',
268
        'organizational-climate/add',
269
        'organizational-climate/edit',
270
        'organizational-climate/delete',
271
        'organizational-climate/form',
272
        'organizational-climate/form/add',
273
        'organizational-climate/form/edit',
274
        'organizational-climate/form/delete',
275
        'organizational-climate/test',
276
        'organizational-climate/test/add',
277
        'organizational-climate/test/report',
278
        'organizational-climate/test/delete',
279
        'organizational-climate/report',
280
        'organizational-climate/report/overview',
281
        'organizational-climate/report/all',
15149 efrain 282
        'organizational-climate/report/excel',
15579 anderson 283
 
1 www 284
        'jobs',
285
        'jobs/add',
286
        'jobs/delete',
287
        'jobs/users-who-applied',
288
        'jobs/edit',
289
        'jobs/edit/title',
290
        'jobs/edit/status',
291
        'jobs/edit/last-date-of-application',
292
        'jobs/edit/employment-type',
293
        'jobs/edit/experience',
294
        'jobs/edit/job-category',
295
        'jobs/edit/extended',
296
        'jobs/edit/location',
297
        'jobs/edit/salary',
298
        'jobs/edit/languages',
299
        'jobs/edit/degrees',
300
        'jobs/edit/skills',
301
        'jobs/edit/how-apply',
16766 efrain 302
 
303
        'helpers',
304
        'helpers/search-people',
305
 
306
        'inmail-personal',
307
        'inmail-personal/start-conversation',
308
        'inmail-personal/delete',
309
        'inmail-personal/messages',
310
        'inmail-personal/messages/send',
311
        'inmail-personal/messages/delete',
312
 
313
        'inmail-company',
314
        'inmail-company/start-conversation',
315
        'inmail-company/delete',
316
        'inmail-company/messages',
317
        'inmail-company/messages/send',
318
        'inmail-company/messages/delete',
15579 anderson 319
 
15540 efrain 320
        'daily-pulse',
321
        'daily-pulse/emojis',
322
        'daily-pulse/emojis/add',
323
        'daily-pulse/emojis/edit',
324
        'daily-pulse/emojis/delete',
325
        'daily-pulse/reports',
326
        'daily-pulse/reports/overview',
327
        'daily-pulse/reports/overview/download',
15579 anderson 328
 
15540 efrain 329
        'engagement',
330
        'engagement/setup',
331
        'engagement/reports',
332
        'engagement/reports/overview',
15542 efrain 333
        'engagement/rewards',
334
        'engagement/rewards/add',
335
        'engagement/rewards/edit',
336
        'engagement/rewards/delete',
15579 anderson 337
 
1 www 338
        'microlearning',
339
        'microlearning/overview',
340
        'microlearning/reports',
2 efrain 341
        'microlearning/reports/progress',
14610 efrain 342
        'microlearning/reports/progress-for-capsule',
15386 efrain 343
        'microlearning/reports/progress-for-capsule/excel',
344
        'microlearning/reports/progress-for-topic',
345
        'microlearning/reports/progress-for-topic/excel',
346
        'microlearning/reports/progress-for-student',
347
        'microlearning/reports/progress-for-student/excel',
15390 efrain 348
        'microlearning/reports/devices-and-access',
349
        'microlearning/reports/devices-and-access/excel',
187 efrain 350
        'microlearning/reports/comments-for-capsule',
15390 efrain 351
        'microlearning/reports/comments-for-capsule/excel',
1 www 352
        'microlearning/content',
353
        'microlearning/content/topics',
354
        'microlearning/content/topics/add',
355
        'microlearning/content/topics/edit',
356
        'microlearning/content/topics/delete',
357
        'microlearning/content/capsules',
358
        'microlearning/content/capsules/add',
359
        'microlearning/content/capsules/edit',
360
        'microlearning/content/capsules/delete',
361
        'microlearning/content/capsules/users',
362
        'microlearning/content/slides',
363
        'microlearning/content/slides/add',
364
        'microlearning/content/slides/edit',
365
        'microlearning/content/slides/delete',
366
        'microlearning/content/slides/text',
66 efrain 367
        'microlearning/content/quizzes',
368
        'microlearning/content/quizzes/add',
369
        'microlearning/content/quizzes/edit',
370
        'microlearning/content/quizzes/delete',
371
        'microlearning/content/quizzes/check',
372
        'microlearning/content/quizzes/publish',
373
        'microlearning/content/quizzes/copy',
374
        'microlearning/content/quizzes/questions',
375
        'microlearning/content/quizzes/questions/add',
376
        'microlearning/content/quizzes/questions/edit',
377
        'microlearning/content/quizzes/questions/delete',
378
        'microlearning/content/quizzes/questions/answers',
379
        'microlearning/content/quizzes/questions/answers/add',
380
        'microlearning/content/quizzes/questions/answers/edit',
381
        'microlearning/content/quizzes/questions/answers/delete',
1 www 382
        'microlearning/access-for-students',
383
        'microlearning/access-for-students/revoke',
384
        'microlearning/access-for-students/unlimit',
385
        'microlearning/access-for-students/cancel',
386
        'microlearning/access-for-students/reactive',
387
        'microlearning/access-for-students/upload',
388
        'microlearning/access-for-students/notification',
389
        'microlearning/students',
390
        'microlearning/students/edit',
391
        'microlearning/students/timeline',
392
        'microlearning/students/change-password',
393
        'microlearning/students/unblock',
394
        'microlearning/settings',
395
        'microlearning/settings/student-types',
396
        'microlearning/settings/student-types/add',
397
        'microlearning/settings/student-types/edit',
398
        'microlearning/settings/student-types/delete',
399
        'microlearning/settings/functions',
400
        'microlearning/settings/functions/add',
401
        'microlearning/settings/functions/edit',
402
        'microlearning/settings/functions/delete',
403
        'microlearning/settings/sectors',
404
        'microlearning/settings/sectors/add',
405
        'microlearning/settings/sectors/edit',
406
        'microlearning/settings/sectors/delete',
407
        'microlearning/settings/programs',
408
        'microlearning/settings/programs/add',
409
        'microlearning/settings/programs/edit',
410
        'microlearning/settings/programs/delete',
411
        'microlearning/settings/groups',
412
        'microlearning/settings/groups/add',
413
        'microlearning/settings/groups/edit',
414
        'microlearning/settings/groups/delete',
415
        'microlearning/settings/companies',
416
        'microlearning/settings/companies/add',
417
        'microlearning/settings/companies/edit',
418
        'microlearning/settings/companies/delete',
419
        'microlearning/settings/partners',
420
        'microlearning/settings/partners/add',
421
        'microlearning/settings/partners/edit',
422
        'microlearning/settings/partners/delete',
423
        'microlearning/settings/institutions',
424
        'microlearning/settings/institutions/add',
425
        'microlearning/settings/institutions/edit',
426
        'microlearning/settings/institutions/delete',
15394 efrain 427
        'microlearning/settings/countries',
428
        'microlearning/settings/countries/add',
429
        'microlearning/settings/countries/edit',
430
        'microlearning/settings/countries/delete',
15088 efrain 431
 
1333 efrain 432
        'own-professional-network',
433
        'organizational-design',
15579 anderson 434
 
16766 efrain 435
        'planning',
16785 efrain 436
        'planning/periods',
437
        'planning/periods/add',
438
        'planning/periods/edit',
439
        'planning/periods/delete',
16766 efrain 440
        'planning/objectives',
441
        'planning/objectives/add',
442
        'planning/objectives/delete',
443
        'planning/objectives/edit',
16785 efrain 444
        'planning/objectives/matrix',
445
        'planning/objectives/analysis',
446
        'planning/objectives/full',
447
        'planning/goals',
448
        'planning/goals/add',
449
        'planning/goals/edit',
450
        'planning/goals/delete',
451
        'planning/tasks',
452
        'planning/tasks/add',
453
        'planning/tasks/edit',
454
        'planning/tasks/delete',
455
        'planning/tasks/view',
4589 nelberth 456
 
16785 efrain 457
 
4535 nelberth 458
        'high-performance-teams',
7222 nelberth 459
        'high-performance-teams/groups',
7228 nelberth 460
        'high-performance-teams/groups/add',
461
        'high-performance-teams/groups/edit',
462
        'high-performance-teams/groups/delete',
7233 nelberth 463
        'high-performance-teams/groups/view',
11902 nelberth 464
        'high-performance-teams/groups/view/feeds',
465
        'high-performance-teams/groups/view/feeds/timeline',
466
        'high-performance-teams/groups/view/feeds/onefeed',
467
        'high-performance-teams/groups/view/feeds/delete',
468
        'high-performance-teams/groups/view/feeds/comments',
469
        'high-performance-teams/groups/view/feeds/comments/delete',
470
        'high-performance-teams/groups/view/feeds/comments/answer',
471
        'high-performance-teams/groups/view/feeds/add',
7484 nelberth 472
        'high-performance-teams/groups/view/topic',
473
        'high-performance-teams/groups/view/topic/add',
474
        'high-performance-teams/groups/view/topic/edit',
475
        'high-performance-teams/groups/view/topic/delete',
7637 nelberth 476
        'high-performance-teams/groups/view/topic/view',
8687 nelberth 477
        'high-performance-teams/groups/view/urgent',
9096 nelberth 478
        'high-performance-teams/groups/view/calendar',
9923 nelberth 479
        'high-performance-teams/groups/view/calendar/view',
10143 nelberth 480
        'high-performance-teams/groups/view/foro',
481
        'high-performance-teams/groups/view/foro/view',
9619 nelberth 482
        'high-performance-teams/groups/view/foro/categories',
9635 nelberth 483
        'high-performance-teams/groups/view/foro/categories/add',
484
        'high-performance-teams/groups/view/foro/categories/delete',
485
        'high-performance-teams/groups/view/foro/categories/edit',
486
        'high-performance-teams/groups/view/foro/categories/view',
9760 nelberth 487
        'high-performance-teams/groups/view/foro/categories/articles',
9845 nelberth 488
        'high-performance-teams/groups/view/foro/categories/articles/add',
489
        'high-performance-teams/groups/view/foro/categories/articles/edit',
490
        'high-performance-teams/groups/view/foro/categories/articles/delete',
491
        'high-performance-teams/groups/view/foro/categories/articles/view',
12407 nelberth 492
        'high-performance-teams/groups/view/objectives',
493
        'high-performance-teams/groups/view/objectives/report',
494
        'high-performance-teams/groups/view/objectives/reportall',
495
        'high-performance-teams/groups/view/objectives/matriz',
496
        'high-performance-teams/groups/view/objectives/goals',
497
        'high-performance-teams/groups/view/objectives/goals/add',
498
        'high-performance-teams/groups/view/objectives/goals/edit',
499
        'high-performance-teams/groups/view/objectives/goals/delete',
500
        'high-performance-teams/groups/view/objectives/goals/task',
501
        'high-performance-teams/groups/view/objectives/goals/task/add',
502
        'high-performance-teams/groups/view/objectives/goals/task/edit',
503
        'high-performance-teams/groups/view/objectives/goals/task/delete',
504
        'high-performance-teams/groups/view/objectives/goals/task/view',
505
        'high-performance-teams/groups/view/objectives/add',
506
        'high-performance-teams/groups/view/objectives/delete',
507
        'high-performance-teams/groups/view/objectives/edit',
15579 anderson 508
 
509
 
510
 
7812 nelberth 511
        'high-performance-teams/groups/view/members',
8012 nelberth 512
        'high-performance-teams/groups/view/members/invite',
7813 nelberth 513
        'high-performance-teams/groups/view/members/delete',
10289 nelberth 514
        'high-performance-teams/groups/view/members/edit',
11430 nelberth 515
 
11342 nelberth 516
        'chat',
16263 anderson 517
        'chat/users',
11342 nelberth 518
        'chat/heart-beat',
519
        'chat/create-group',
520
        'chat/add-user-to-group',
521
        'chat/mark-seen',
522
        'chat/mark-received',
523
        'chat/remove-user-from-group',
524
        'chat/get-all-messages',
525
        'chat/send',
526
        'chat/get-contacts-availables-for-group',
527
        'chat/get-contact-group-list',
528
        'chat/leave-group',
529
        'chat/delete-group',
530
        'chat/close',
531
        'chat/clear',
14692 efrain 532
        'chat/open',
11342 nelberth 533
        'chat/upload',
16246 anderson 534
        'chat/zoom',
16258 anderson 535
        'chat/open-or-create',
11430 nelberth 536
        'csrf',
4588 nelberth 537
 
16263 anderson 538
 
15401 efrain 539
        'discovery-contacts',
540
        'discovery-contacts/add',
541
        'discovery-contacts/edit',
542
        'discovery-contacts/delete',
543
        'discovery-contacts/view',
15546 efrain 544
        'discovery-contacts/upload',
15401 efrain 545
        'discovery-contacts/interaction-types',
546
        'discovery-contacts/interaction-types/add',
547
        'discovery-contacts/interaction-types/delete',
548
        'discovery-contacts/interaction-types/edit',
549
        'discovery-contacts/interactions',
550
        'discovery-contacts/interactions/add',
551
        'discovery-contacts/interactions/delete',
552
        'discovery-contacts/logs',
15636 anderson 553
        'discovery-contacts/progress-by-day',
16758 efrain 554
        'discovery-contacts/progress-by-day/download',
555
        'discovery-contacts/report',
556
        'discovery-contacts/report/download',
557
 
558
 
15451 efrain 559
        'my-coach',
560
        'my-coach/categories',
561
        'my-coach/categories/add',
562
        'my-coach/categories/edit',
563
        'my-coach/categories/delete',
15831 efrain 564
        'my-coach/categories/users',
565
        'my-coach/categories/users/add',
566
        'my-coach/categories/users/edit',
567
        'my-coach/categories/users/delete',
568
        'my-coach/categories/users/upload',
16263 anderson 569
 
16248 efrain 570
        'knowledge-area',
571
        'knowledge-area/categories',
572
        'knowledge-area/categories/add',
573
        'knowledge-area/categories/edit',
574
        'knowledge-area/categories/delete',
575
        'knowledge-area/categories/users',
576
        'knowledge-area/categories/users/add',
577
        'knowledge-area/categories/users/edit',
578
        'knowledge-area/categories/users/delete',
579
        'knowledge-area/categories/users/upload',
16701 efrain 580
 
581
        'fast-survey',
582
        'fast-survey/add',
583
        'fast-survey/edit',
584
        'fast-survey/delete',
16747 efrain 585
        'fast-survey/chart',
16701 efrain 586
        'fast-survey/download',
15579 anderson 587
 
1333 efrain 588
        'induction',
13524 nelberth 589
 
1333 efrain 590
        'culture',
13524 nelberth 591
 
14989 efrain 592
 
15579 anderson 593
 
1333 efrain 594
        'building-my-future',
15579 anderson 595
 
596
 
15387 efrain 597
        'reports',
598
        'reports/users-blocked',
599
        'reports/users-blocked/excel',
16747 efrain 600
        //'reports/users-blocked/edit',
601
        //'reports/users-blocked/delete',
15579 anderson 602
 
15442 efrain 603
        'activities-center',
604
        'activities-center/performance-evaluation',
605
        'activities-center/performance-evaluation/take-a-test',
606
        'activities-center/performance-evaluation/report',
15579 anderson 607
 
15461 efrain 608
        'activities-center/recruitment-and-selection',
609
        'activities-center/recruitment-and-selection/take-a-test',
610
        'activities-center/recruitment-and-selection/report',
16285 efrain 611
 
612
        'tools',
613
        'tools/userfile-password-generator'
15461 efrain 614
 
1 www 615
    ];
616
}
617
 
15336 efrain 618
 
619
 
620
 
15579 anderson 621
function getAclRolesCompany()
622
{
1 www 623
    return [
1336 efrain 624
 
15579 anderson 625
 
626
 
4 efrain 627
        'company-creator' => [
628
            'home',
629
            'signin-admin',
630
            'signin-company',
631
            'dashboard',
632
            'signout',
633
            'storage',
634
            'profile',
635
            'profile/extended',
636
            'profile/cover',
779 geraldo 637
            'profile/header',
638
            'profile/footer',
4 efrain 639
            'profile/image',
640
            'profile/website',
641
            'profile/foundation_year',
642
            'profile/location',
643
            'profile/social-network',
644
            'profile/company-size',
645
            'profile/industry',
646
            'profile/delete',
16278 anderson 647
            'profile/view',
4 efrain 648
            'users',
649
            'users/change-password',
650
            'users/unblock',
651
            'users/invite',
652
            'users/accept',
653
            'users/cancel',
654
            'users/reject',
655
            'users/edit',
656
            'users/upload',
15579 anderson 657
 
4 efrain 658
            'feeds',
15175 efrain 659
            'feeds/timeline',
660
            'feeds/onefeed',
661
            'feeds/delete',
662
            'feeds/comments',
663
            'feeds/comments/delete',
664
            'feeds/comments/answer',
15364 efrain 665
            'feeds/add',
15579 anderson 666
 
4 efrain 667
            'followers',
668
            'followers/delete',
669
            'jobs',
670
            'jobs/add',
671
            'jobs/delete',
672
            'jobs/users-who-applied',
673
            'jobs/edit',
15088 efrain 674
            'jobs/edit/title',
675
            'jobs/edit/status',
4 efrain 676
            'jobs/edit/last-date-of-application',
677
            'jobs/edit/employment-type',
678
            'jobs/edit/experience',
679
            'jobs/edit/job-category',
680
            'jobs/edit/extended',
681
            'jobs/edit/location',
682
            'jobs/edit/salary',
683
            'jobs/edit/languages',
684
            'jobs/edit/degrees',
685
            'jobs/edit/skills',
686
            'jobs/edit/how-apply',
15336 efrain 687
 
15387 efrain 688
            'reports',
689
            'reports/users-blocked',
690
            'reports/users-blocked/excel',
16747 efrain 691
            //'reports/users-blocked/edit',
692
            //'reports/users-blocked/delete',
16766 efrain 693
 
694
 
695
            'inmail-company',
696
            'inmail-company/start-conversation',
697
            'inmail-company/delete',
698
            'inmail-company/messages',
699
            'inmail-company/messages/send',
700
            'inmail-company/messages/delete',
15579 anderson 701
 
702
 
703
 
4 efrain 704
        ],
1 www 705
        'company-admin' => [
706
            'home',
707
            'signin-admin',
708
            'signin-company',
709
            'dashboard',
710
            'signout',
711
            'storage',
712
            'profile',
713
            'profile/extended',
714
            'profile/cover',
715
            'profile/image',
779 geraldo 716
            'profile/header',
717
            'profile/footer',
1 www 718
            'profile/website',
719
            'profile/foundation_year',
720
            'profile/location',
721
            'profile/social-network',
722
            'profile/company-size',
723
            'profile/industry',
724
            'profile/delete',
16278 anderson 725
            'profile/view',
1 www 726
            'users',
727
            'users/change-password',
728
            'users/unblock',
729
            'users/invite',
730
            'users/accept',
731
            'users/cancel',
732
            'users/reject',
733
            'users/edit',
734
            'users/upload',
735
            'feeds',
15175 efrain 736
            'feeds/timeline',
737
            'feeds/onefeed',
738
            'feeds/delete',
739
            'feeds/comments',
740
            'feeds/comments/delete',
741
            'feeds/comments/answer',
15364 efrain 742
            'feeds/add',
15579 anderson 743
 
1 www 744
            'followers',
745
            'followers/delete',
746
            'jobs',
747
            'jobs/add',
748
            'jobs/delete',
749
            'jobs/users-who-applied',
750
            'jobs/edit',
15088 efrain 751
            'jobs/edit/title',
752
            'jobs/edit/status',
1 www 753
            'jobs/edit/last-date-of-application',
754
            'jobs/edit/employment-type',
755
            'jobs/edit/experience',
756
            'jobs/edit/job-category',
757
            'jobs/edit/extended',
758
            'jobs/edit/location',
759
            'jobs/edit/salary',
760
            'jobs/edit/languages',
761
            'jobs/edit/degrees',
762
            'jobs/edit/skills',
763
            'jobs/edit/how-apply',
15579 anderson 764
 
15387 efrain 765
            'reports',
766
            'reports/users-blocked',
767
            'reports/users-blocked/excel',
16747 efrain 768
            //'reports/users-blocked/edit',
769
            //'reports/users-blocked/delete',
16766 efrain 770
 
771
 
772
            'inmail-company',
773
            'inmail-company/start-conversation',
774
            'inmail-company/delete',
775
            'inmail-company/messages',
776
            'inmail-company/messages/send',
777
            'inmail-company/messages/delete',
1 www 778
        ],
779
        'company-password-unblock' => [
780
            'home',
781
            'signin-admin',
782
            'signin-company',
783
            'dashboard',
784
            'signout',
785
            'storage',
786
            'users',
787
            'users/change-password',
788
            'users/unblock',
15579 anderson 789
 
15387 efrain 790
            'reports',
791
            'reports/users-blocked',
792
            'reports/users-blocked/excel',
16747 efrain 793
            //'reports/users-blocked/edit',
794
            //'reports/users-blocked/delete',
15579 anderson 795
 
796
 
1 www 797
        ],
16766 efrain 798
        'company-inmail' => [
799
            'inmail-company',
800
            'inmail-company/start-conversation',
801
            'inmail-company/delete',
802
            'inmail-company/messages',
803
            'inmail-company/messages/send',
804
            'inmail-company/messages/delete',
805
        ],
1 www 806
        'microlearning-admin' => [
807
            'home',
808
            'signin-admin',
809
            'signin-company',
810
            'dashboard',
811
            'signout',
812
            'storage',
813
            'microlearning',
814
            'microlearning/overview',
187 efrain 815
            'microlearning/reports',
816
            'microlearning/reports/progress',
14610 efrain 817
            'microlearning/reports/progress-for-capsule',
15386 efrain 818
            'microlearning/reports/progress-for-capsule/excel',
819
            'microlearning/reports/progress-for-topic',
820
            'microlearning/reports/progress-for-topic/excel',
821
            'microlearning/reports/progress-for-student',
822
            'microlearning/reports/progress-for-student/excel',
15390 efrain 823
            'microlearning/reports/devices-and-access',
824
            'microlearning/reports/devices-and-access/excel',
187 efrain 825
            'microlearning/reports/comments-for-capsule',
15390 efrain 826
            'microlearning/reports/comments-for-capsule/excel',
1 www 827
            'microlearning/content',
828
            'microlearning/content/topics',
829
            'microlearning/content/topics/add',
830
            'microlearning/content/topics/edit',
831
            'microlearning/content/topics/delete',
832
            'microlearning/content/capsules',
833
            'microlearning/content/capsules/add',
834
            'microlearning/content/capsules/edit',
835
            'microlearning/content/capsules/delete',
836
            'microlearning/content/capsules/users',
837
            'microlearning/content/slides',
838
            'microlearning/content/slides/add',
839
            'microlearning/content/slides/edit',
840
            'microlearning/content/slides/delete',
841
            'microlearning/content/slides/text',
842
            'microlearning/students',
843
            'microlearning/students/edit',
844
            'microlearning/students/timeline',
845
            'microlearning/access-for-students',
846
            'microlearning/access-for-students/revoke',
847
            'microlearning/access-for-students/unlimit',
848
            'microlearning/access-for-students/cancel',
849
            'microlearning/access-for-students/reactive',
850
            'microlearning/access-for-students/upload',
851
            'microlearning/access-for-students/notification',
852
            'microlearning/settings',
853
            'microlearning/settings/student-types',
854
            'microlearning/settings/student-types/add',
855
            'microlearning/settings/student-types/edit',
856
            'microlearning/settings/student-types/delete',
857
            'microlearning/settings/functions',
858
            'microlearning/settings/functions/add',
859
            'microlearning/settings/functions/edit',
860
            'microlearning/settings/functions/delete',
861
            'microlearning/settings/sectors',
862
            'microlearning/settings/sectors/add',
863
            'microlearning/settings/sectors/edit',
864
            'microlearning/settings/sectors/delete',
865
            'microlearning/settings/programs',
866
            'microlearning/settings/programs/add',
867
            'microlearning/settings/programs/edit',
868
            'microlearning/settings/programs/delete',
869
            'microlearning/settings/groups',
870
            'microlearning/settings/groups/add',
871
            'microlearning/settings/groups/edit',
872
            'microlearning/settings/groups/delete',
873
            'microlearning/settings/companies',
874
            'microlearning/settings/companies/add',
875
            'microlearning/settings/companies/edit',
876
            'microlearning/settings/companies/delete',
877
            'microlearning/settings/partners',
878
            'microlearning/settings/partners/add',
879
            'microlearning/settings/partners/edit',
880
            'microlearning/settings/partners/delete',
881
            'microlearning/settings/institutions',
882
            'microlearning/settings/institutions/add',
883
            'microlearning/settings/institutions/edit',
884
            'microlearning/settings/institutions/delete',
15394 efrain 885
            'microlearning/settings/countries',
886
            'microlearning/settings/countries/add',
887
            'microlearning/settings/countries/edit',
888
            'microlearning/settings/countries/delete',
1 www 889
        ],
890
        'microlearning-editor' => [
891
            'home',
892
            'signin-admin',
893
            'signin-company',
894
            'dashboard',
895
            'signout',
896
            'storage',
897
            'microlearning',
898
            'microlearning/content',
899
            'microlearning/content/topics',
900
            'microlearning/content/topics/add',
901
            'microlearning/content/topics/edit',
902
            'microlearning/content/topics/delete',
903
            'microlearning/content/capsules',
904
            'microlearning/content/capsules/add',
905
            'microlearning/content/capsules/edit',
906
            'microlearning/content/capsules/delete',
907
            'microlearning/content/capsules/users',
908
            'microlearning/content/slides',
909
            'microlearning/content/slides/add',
910
            'microlearning/content/slides/edit',
911
            'microlearning/content/slides/delete',
912
            'microlearning/content/slides/text',
913
            'microlearning/access-for-students',
914
            'microlearning/access-for-students/revoke',
915
            'microlearning/access-for-students/unlimit',
916
            'microlearning/access-for-students/cancel',
917
            'microlearning/access-for-students/reactive',
918
            'microlearning/access-for-students/upload',
919
            'microlearning/access-for-students/notification',
920
        ],
921
        'microlearning-students-password-unblock' => [
922
            'home',
923
            'signin-admin',
924
            'signin-company',
925
            'dashboard',
926
            'signout',
927
            'storage',
928
            'microlearning',
929
            'microlearning/students',
930
            'microlearning/students/change-password',
931
            'microlearning/students/unblock',
932
        ],
933
        'self-evaluation-admin' => [
114 efrain 934
            'self-evaluation',
935
            'self-evaluation/forms',
936
            'self-evaluation/forms/add',
937
            'self-evaluation/forms/edit',
938
            'self-evaluation/forms/delete',
115 efrain 939
            'self-evaluation/users',
940
            'self-evaluation/users/add',
941
            'self-evaluation/users/delete',
114 efrain 942
            'self-evaluation/reviews',
115 efrain 943
            'self-evaluation/reviews/edit',
470 geraldo 944
            'self-evaluation/reviews/report',
1 www 945
        ],
15088 efrain 946
        'self-evaluation-reviews' => [
947
            'self-evaluation',
948
            'self-evaluation/reviews',
949
            'self-evaluation/reviews/edit',
950
            'self-evaluation/reviews/report',
951
        ],
975 geraldo 952
        'performance-evaluation-admin' => [
15088 efrain 953
            'settings',
15579 anderson 954
 
16766 efrain 955
            'jobs-description',
956
            'jobs-description/add',
957
            'jobs-description/edit',
958
            'jobs-description/delete',
959
            'jobs-description/report',
960
            'jobs-description/import',
961
 
15442 efrain 962
            'jobs-description/behaviors',
963
            'jobs-description/behaviors/add',
964
            'jobs-description/behaviors/edit',
965
            'jobs-description/behaviors/delete',
966
            'jobs-description/behaviors/import',
15579 anderson 967
 
15442 efrain 968
            'jobs-description/competencies',
969
            'jobs-description/competencies/add',
970
            'jobs-description/competencies/edit',
971
            'jobs-description/competencies/delete',
972
            'jobs-description/competencies/import',
15579 anderson 973
 
15442 efrain 974
            'jobs-description/competency-types',
975
            'jobs-description/competency-types/add',
976
            'jobs-description/competency-types/edit',
977
            'jobs-description/competency-types/delete',
978
            'jobs-description/competency-types/import',
15579 anderson 979
 
980
 
16766 efrain 981
 
975 geraldo 982
            'performance-evaluation',
983
            'performance-evaluation/forms',
984
            'performance-evaluation/forms/add',
985
            'performance-evaluation/forms/edit',
986
            'performance-evaluation/forms/delete',
15442 efrain 987
            'performance-evaluation/forms/job-description',
988
            'performance-evaluation/forms/active',
989
            'performance-evaluation/forms/inactive',
1263 geraldo 990
            'performance-evaluation/forms/report',
15579 anderson 991
 
992
 
15442 efrain 993
            'performance-evaluation/evaluations',
994
            'performance-evaluation/evaluations/add',
995
            'performance-evaluation/evaluations/delete',
996
            'performance-evaluation/evaluations/report'
15088 efrain 997
        ],
15579 anderson 998
 
999
 
15088 efrain 1000
        'performance-evaluation-editor' => [
15442 efrain 1001
            'performance-evaluation/evaluations',
1002
            'performance-evaluation/evaluations/add',
1003
            'performance-evaluation/evaluations/delete',
1004
            'performance-evaluation/evaluations/report'
15579 anderson 1005
 
975 geraldo 1006
        ],
15088 efrain 1007
        'recruitment-and-selection-admin' => [
16766 efrain 1008
 
1009
            'jobs-description',
1010
            'jobs-description/add',
1011
            'jobs-description/edit',
1012
            'jobs-description/delete',
1013
            'jobs-description/report',
1014
            'jobs-description/import',
1015
 
15442 efrain 1016
            'jobs-description/behaviors',
1017
            'jobs-description/behaviors/add',
1018
            'jobs-description/behaviors/edit',
1019
            'jobs-description/behaviors/delete',
1020
            'jobs-description/behaviors/import',
15579 anderson 1021
 
15442 efrain 1022
            'jobs-description/competencies',
1023
            'jobs-description/competencies/add',
1024
            'jobs-description/competencies/edit',
1025
            'jobs-description/competencies/delete',
1026
            'jobs-description/competencies/import',
15579 anderson 1027
 
15442 efrain 1028
            'jobs-description/competency-types',
1029
            'jobs-description/competency-types/add',
1030
            'jobs-description/competency-types/edit',
1031
            'jobs-description/competency-types/delete',
1032
            'jobs-description/competency-types/import',
15579 anderson 1033
 
1034
 
15088 efrain 1035
            'recruitment-and-selection',
1036
            'recruitment-and-selection/vacancies',
1037
            'recruitment-and-selection/vacancies/add',
1038
            'recruitment-and-selection/vacancies/edit',
1039
            'recruitment-and-selection/vacancies/delete',
15461 efrain 1040
            'recruitment-and-selection/applications',
1041
            'recruitment-and-selection/applications/user-by-email',
1042
            'recruitment-and-selection/applications/add',
1043
            'recruitment-and-selection/applications/delete',
1044
            'recruitment-and-selection/applications/level',
1045
            'recruitment-and-selection/applications/status',
1046
            'recruitment-and-selection/applications/comment',
1047
            'recruitment-and-selection/applications/view',
1048
            'recruitment-and-selection/applications/files',
1049
            'recruitment-and-selection/applications/files/add',
1050
            'recruitment-and-selection/applications/files/delete',
1051
            'recruitment-and-selection/applications/files/view',
1052
            'recruitment-and-selection/applications/interviews',
1053
            'recruitment-and-selection/applications/interviews/add',
1054
            'recruitment-and-selection/applications/interviews/edit',
1055
            'recruitment-and-selection/applications/interviews/delete',
1056
            'recruitment-and-selection/applications/interviews/report',
15579 anderson 1057
 
15461 efrain 1058
            /*
15088 efrain 1059
            'recruitment-and-selection/candidates',
1060
            'recruitment-and-selection/candidates/add',
1061
            'recruitment-and-selection/candidates/edit',
1062
            'recruitment-and-selection/candidates/delete',
1063
            'recruitment-and-selection/user-by-email',
1064
            'recruitment-and-selection/interview',
1065
            'recruitment-and-selection/interview/form',
1066
            'recruitment-and-selection/interview/form/add',
1067
            'recruitment-and-selection/interview/form/edit',
1068
            'recruitment-and-selection/interview/form/delete',
1069
            'recruitment-and-selection/interview/report',
1070
            'recruitment-and-selection/interview/vacancy',
1071
            'recruitment-and-selection/interview/type',
1072
            'recruitment-and-selection/interview/file',
1073
            'recruitment-and-selection/interview/file/add',
1074
            'recruitment-and-selection/interview/file/edit',
15461 efrain 1075
            'recruitment-and-selection/interview/file/delete',*/
15088 efrain 1076
        ],
15579 anderson 1077
 
15088 efrain 1078
        'recruitment-and-selection-editor' => [
1079
            'recruitment-and-selection',
1080
            'recruitment-and-selection/vacancies',
1081
            'recruitment-and-selection/vacancies/add',
1082
            'recruitment-and-selection/vacancies/edit',
1083
            'recruitment-and-selection/vacancies/delete',
15461 efrain 1084
            'recruitment-and-selection/applications',
1085
            'recruitment-and-selection/applications/user-by-email',
1086
            'recruitment-and-selection/applications/add',
1087
            'recruitment-and-selection/applications/delete',
1088
            'recruitment-and-selection/applications/view',
1089
            'recruitment-and-selection/applications/level',
1090
            'recruitment-and-selection/applications/status',
1091
            'recruitment-and-selection/applications/comment',
1092
            'recruitment-and-selection/applications/files',
1093
            'recruitment-and-selection/applications/files/add',
1094
            'recruitment-and-selection/applications/files/delete',
1095
            'recruitment-and-selection/applications/files/view',
1096
            'recruitment-and-selection/applications/interviews',
1097
            'recruitment-and-selection/applications/interviews/add',
1098
            'recruitment-and-selection/applications/interviews/edit',
1099
            'recruitment-and-selection/applications/interviews/delete',
1100
            'recruitment-and-selection/applications/interviews/report',
15579 anderson 1101
 
15461 efrain 1102
            /*
15088 efrain 1103
            'recruitment-and-selection/candidates',
1104
            'recruitment-and-selection/candidates/add',
1105
            'recruitment-and-selection/candidates/edit',
1106
            'recruitment-and-selection/candidates/delete',
1107
            'recruitment-and-selection/user-by-email',
1108
            'recruitment-and-selection/interview',
1109
            'recruitment-and-selection/interview/form',
1110
            'recruitment-and-selection/interview/form/add',
1111
            'recruitment-and-selection/interview/form/edit',
1112
            'recruitment-and-selection/interview/form/delete',
1113
            'recruitment-and-selection/interview/report',
1114
            'recruitment-and-selection/interview/vacancy',
1115
            'recruitment-and-selection/interview/type',
1116
            'recruitment-and-selection/interview/file',
1117
            'recruitment-and-selection/interview/file/add',
1118
            'recruitment-and-selection/interview/file/edit',
15461 efrain 1119
            'recruitment-and-selection/interview/file/delete',*/
15088 efrain 1120
        ],
16701 efrain 1121
        'fast-survey-admin' => [
1122
            'fast-survey',
1123
            'fast-survey/add',
1124
            'fast-survey/edit',
1125
            'fast-survey/delete',
16747 efrain 1126
            'fast-survey/chart',
16701 efrain 1127
            'fast-survey/download',
1128
        ],
15149 efrain 1129
        'survey-admin' => [
1130
            'survey',
1131
            'survey/add',
1132
            'survey/edit',
1133
            'survey/delete',
1134
            'survey/form',
1135
            'survey/form/add',
1136
            'survey/form/edit',
1137
            'survey/form/delete',
1138
            'survey/test',
1139
            'survey/test/add',
1140
            'survey/test/report',
1141
            'survey/test/delete',
1142
            'survey/report',
1143
            'survey/report/overview',
1144
            'survey/report/all',
1145
            'survey/report/excel',
1146
        ],
1147
        'survey-test' => [
1148
            'survey/test',
1149
            'survey/test/add',
1150
            'survey/test/report',
1151
            'survey/test/delete',
1152
        ],
1153
        'survey-report' => [
1154
            'survey/report',
1155
            'survey/report/overview',
1156
            'survey/report/all',
1157
            'survey/report/excel',
1158
        ],
15175 efrain 1159
        'organizational-climate-admin' => [
1160
            'organizational-climate',
1161
            'organizational-climate/add',
1162
            'organizational-climate/edit',
1163
            'organizational-climate/delete',
1164
            'organizational-climate/form',
1165
            'organizational-climate/form/add',
1166
            'organizational-climate/form/edit',
1167
            'organizational-climate/form/delete',
1168
            'organizational-climate/test',
1169
            'organizational-climate/test/add',
1170
            'organizational-climate/test/report',
1171
            'organizational-climate/test/delete',
1172
            'organizational-climate/report',
1173
            'organizational-climate/report/overview',
1174
            'organizational-climate/report/all',
1175
            'organizational-climate/report/excel',
1176
        ],
1177
        'organizational-climate-test' => [
1178
            'organizational-climate/test',
1179
            'organizational-climate/test/add',
1180
            'organizational-climate/test/report',
1181
            'organizational-climate/test/delete',
1182
        ],
1183
        'organizational-climate-report' => [
1184
            'organizational-climate/report',
1185
            'organizational-climate/report/overview',
1186
            'organizational-climate/report/all',
1187
            'organizational-climate/report/excel',
15386 efrain 1188
        ],
16766 efrain 1189
        'planning-admin' => [
1190
            'planning',
16785 efrain 1191
            'planning/periods',
1192
            'planning/periods/add',
1193
            'planning/periods/edit',
1194
            'planning/periods/delete',
16766 efrain 1195
            'planning/objectives',
1196
            'planning/objectives/add',
1197
            'planning/objectives/delete',
1198
            'planning/objectives/edit',
16785 efrain 1199
            'planning/objectives/matrix',
1200
            'planning/objectives/analysis',
1201
            'planning/objectives/full',
1202
            'planning/goals',
1203
            'planning/goals/add',
1204
            'planning/goals/edit',
1205
            'planning/goals/delete',
1206
            'planning/tasks',
1207
            'planning/tasks/add',
1208
            'planning/tasks/edit',
1209
            'planning/tasks/delete',
1210
            'planning/tasks/view',
1211
 
15386 efrain 1212
        ],
16766 efrain 1213
 
15401 efrain 1214
        'discovery-contacts-admin' => [
1215
 
1216
            'discovery-contacts',
1217
            'discovery-contacts/add',
1218
            'discovery-contacts/edit',
1219
            'discovery-contacts/delete',
1220
            'discovery-contacts/view',
15546 efrain 1221
            'discovery-contacts/upload',
15401 efrain 1222
            'discovery-contacts/interaction-types',
1223
            'discovery-contacts/interaction-types/add',
1224
            'discovery-contacts/interaction-types/delete',
1225
            'discovery-contacts/interaction-types/edit',
1226
            'discovery-contacts/interactions',
1227
            'discovery-contacts/interactions/add',
1228
            'discovery-contacts/interactions/delete',
1229
            'discovery-contacts/logs',
16758 efrain 1230
            'discovery-contacts/progress-by-day',
1231
            'discovery-contacts/progress-by-day/download',
1232
            'discovery-contacts/report',
1233
            'discovery-contacts/report/download',
15579 anderson 1234
        ],
16248 efrain 1235
        'discovery-contacts-user-with-importation' => [
1236
            'discovery-contacts',
1237
            'discovery-contacts/add',
1238
            'discovery-contacts/edit',
1239
            'discovery-contacts/view',
1240
            'discovery-contacts/upload',
1241
            'discovery-contacts/interactions',
1242
            'discovery-contacts/interactions/add',
1243
            'discovery-contacts/interactions/delete',
1244
            'discovery-contacts/logs',
16758 efrain 1245
 
16248 efrain 1246
        ],
15401 efrain 1247
        'discovery-contacts-user' => [
15579 anderson 1248
 
15401 efrain 1249
            'discovery-contacts',
1250
            'discovery-contacts/add',
1251
            'discovery-contacts/edit',
1252
            'discovery-contacts/view',
1253
            'discovery-contacts/interactions',
1254
            'discovery-contacts/interactions/add',
1255
            'discovery-contacts/interactions/delete',
1256
            'discovery-contacts/logs',
16758 efrain 1257
 
15401 efrain 1258
        ],
15451 efrain 1259
        'my-coach-admin' => [
1260
            'my-coach',
1261
            'my-coach/categories',
1262
            'my-coach/categories/add',
1263
            'my-coach/categories/edit',
1264
            'my-coach/categories/delete',
15831 efrain 1265
            'my-coach/categories/users',
1266
            'my-coach/categories/users/add',
1267
            'my-coach/categories/users/edit',
1268
            'my-coach/categories/users/delete',
1269
            'my-coach/categories/users/upload',
15540 efrain 1270
        ],
16248 efrain 1271
        'knowledge-area-admin' => [
1272
            'knowledge-area',
1273
            'knowledge-area/categories',
1274
            'knowledge-area/categories/add',
1275
            'knowledge-area/categories/edit',
1276
            'knowledge-area/categories/delete',
1277
            'knowledge-area/categories/users',
1278
            'knowledge-area/categories/users/add',
1279
            'knowledge-area/categories/users/edit',
1280
            'knowledge-area/categories/users/delete',
1281
            'knowledge-area/categories/users/upload',
1282
        ],
15540 efrain 1283
        'engagement-admin' => [
1284
            'engagement',
1285
            'engagement/setup',
1286
            'engagement/reports',
1287
            'engagement/reports/overview',
15542 efrain 1288
            'engagement/rewards',
1289
            'engagement/rewards/add',
1290
            'engagement/rewards/edit',
1291
            'engagement/rewards/delete',
15579 anderson 1292
 
1293
 
15540 efrain 1294
        ],
15579 anderson 1295
 
16249 efrain 1296
        'daily-pulse-admin' => [
15540 efrain 1297
            'daily-pulse',
1298
            'daily-pulse/emojis',
1299
            'daily-pulse/emojis/add',
1300
            'daily-pulse/emojis/edit',
1301
            'daily-pulse/emojis/delete',
1302
            'daily-pulse/reports',
1303
            'daily-pulse/reports/overview',
1304
            'daily-pulse/reports/overview/download',
15579 anderson 1305
        ],
15540 efrain 1306
 
15579 anderson 1307
 
16770 efrain 1308
        'organization-admin' => [
1309
            'organization',
1310
            'organization/graph',
1311
            'organization/positions',
1312
            'organization/positions/add',
1313
            'organization/positions/edit',
1314
            'organization/positions/delete',
1315
            'organization/positions/subordinates',
1316
            'organization/positions/subordinates/add',
1317
            'organization/positions/subordinates/edit',
1318
            'organization/positions/subordinates/delete',
16766 efrain 1319
        ],
15579 anderson 1320
 
1321
 
779 geraldo 1322
    ];
1 www 1323
}
1324
 
15355 efrain 1325
function getAclPermissionPushTemplatesForCustomApps()
1326
{
1327
    return [
1328
        'settings',
1329
        'settings/push-templates',
1330
        'settings/push-templates/edit',
1331
        'settings/push-templates/import',
1332
    ];
1333
}
1334
 
15579 anderson 1335
function getAclPermissionSuperAdmin()
15336 efrain 1336
{
1 www 1337
    return [
15336 efrain 1338
        'settings',
1339
        'settings/private-networks',
1340
        'settings/private-networks/add',
1341
        'settings/private-networks/edit',
1342
        'settings/private-networks/delete',
16263 anderson 1343
 
16248 efrain 1344
        'users',
1345
        'users/change-type',
15460 efrain 1346
 
16285 efrain 1347
        'tools',
1348
        'tools/userfile-password-generator'
15579 anderson 1349
 
1350
 
15336 efrain 1351
    ];
1352
}
1353
 
1354
function  getAclPermissionAdminForDefaultNetwork()
1355
{
1356
    return [
15579 anderson 1357
 
1358
 
15460 efrain 1359
        'jobs-description',
1360
        'jobs-description/add',
1361
        'jobs-description/edit',
1362
        'jobs-description/delete',
15579 anderson 1363
 
15442 efrain 1364
        'jobs-description/competency-types',
1365
        'jobs-description/competency-types/add',
1366
        'jobs-description/competency-types/edit',
1367
        'jobs-description/competency-types/delete',
1368
        'jobs-description/behaviors',
15579 anderson 1369
 
15442 efrain 1370
        'jobs-description/behaviors/add',
1371
        'jobs-description/behaviors/edit',
15460 efrain 1372
        'jobs-description/behaviors/delete',
15579 anderson 1373
 
15442 efrain 1374
        'jobs-description/competencies',
1375
        'jobs-description/competencies/add',
1376
        'jobs-description/competencies/edit',
1377
        'jobs-description/competencies/delete',
15460 efrain 1378
 
1379
        'settings',
15579 anderson 1380
 
15460 efrain 1381
        'settings/email-templates',
1382
        'settings/email-templates/edit',
15579 anderson 1383
 
15460 efrain 1384
        'settings/push-templates',
1385
        'settings/push-templates/edit',
15579 anderson 1386
 
15460 efrain 1387
        'settings/countries',
1388
        'settings/countries/add',
1389
        'settings/countries/edit',
1390
        'settings/countries/delete',
15579 anderson 1391
 
15460 efrain 1392
        'settings/company-sizes',
1393
        'settings/company-sizes/add',
1394
        'settings/company-sizes/edit',
1395
        'settings/company-sizes/delete',
15579 anderson 1396
 
15336 efrain 1397
        'settings/degrees',
1398
        'settings/degrees/add',
1399
        'settings/degrees/edit',
1400
        'settings/degrees/delete',
15579 anderson 1401
 
15336 efrain 1402
        'settings/group-types',
1403
        'settings/group-types/add',
1404
        'settings/group-types/edit',
1405
        'settings/group-types/delete',
15579 anderson 1406
 
15336 efrain 1407
        'settings/industries',
1408
        'settings/industries/add',
1409
        'settings/industries/edit',
1410
        'settings/industries/delete',
15579 anderson 1411
 
15336 efrain 1412
        'settings/job-categories',
1413
        'settings/job-categories/add',
1414
        'settings/job-categories/edit',
1415
        'settings/job-categories/delete',
15579 anderson 1416
 
15336 efrain 1417
        'settings/skills',
1418
        'settings/skills/add',
1419
        'settings/skills/edit',
1420
        'settings/skills/delete',
15579 anderson 1421
 
15336 efrain 1422
        'settings/aptitudes',
1423
        'settings/aptitudes/add',
1424
        'settings/aptitudes/edit',
1425
        'settings/aptitudes/delete',
15579 anderson 1426
 
15336 efrain 1427
        'settings/hobbies-and-interests',
1428
        'settings/hobbies-and-interests/add',
1429
        'settings/hobbies-and-interests/edit',
1430
        'settings/hobbies-and-interests/delete',
15460 efrain 1431
 
1432
 
15579 anderson 1433
 
1434
 
15336 efrain 1435
        'settings/email-templates',
1436
        'settings/email-templates/edit',
1437
        'settings/push-templates',
1438
        'settings/push-templates/edit',
1439
 
15579 anderson 1440
 
15336 efrain 1441
        'settings/my-private-network',
1442
        'settings/my-private-network/intro',
1443
        'settings/my-private-network/navbar',
1444
        'settings/my-private-network/favicon',
1445
        'settings/my-private-network/logo',
1446
        'settings/my-private-network/styles-and-colors',
15394 efrain 1447
        'settings/my-private-network/calendar',
15831 efrain 1448
        'settings/my-private-network/moodle',
15579 anderson 1449
 
15336 efrain 1450
        'companies',
1451
        'companies/edit',
1452
        'companies/services',
1453
        'companies/roles',
15579 anderson 1454
 
15387 efrain 1455
        'reports',
1456
        'reports/users-blocked',
1457
        'reports/users-blocked/excel',
16747 efrain 1458
        //'reports/users-blocked/edit',
1459
        //'reports/users-blocked/delete',
15336 efrain 1460
    ];
1461
}
1462
 
1463
function  getAclPermissionAdminForNonDefaultNetwork()
1464
{
1465
    return [
1466
        'settings',
1467
        'settings/email-templates',
1468
        'settings/email-templates/edit',
15579 anderson 1469
 
1470
 
15336 efrain 1471
        'settings/my-private-network',
1472
        'settings/my-private-network/intro',
1473
        'settings/my-private-network/navbar',
1474
        'settings/my-private-network/favicon',
1475
        'settings/my-private-network/logo',
1476
        'settings/my-private-network/styles-and-colors',
15394 efrain 1477
        'settings/my-private-network/calendar',
15831 efrain 1478
        'settings/my-private-network/moodle',
15579 anderson 1479
 
1480
 
15387 efrain 1481
        'reports',
1482
        'reports/users-blocked',
1483
        'reports/users-blocked/excel',
16747 efrain 1484
        //'reports/users-blocked/edit',
1485
        //'reports/users-blocked/delete',
15579 anderson 1486
 
15457 efrain 1487
        'users',
1488
        'users/request-access',
1489
        'users/request-access/approve',
1490
        'users/request-access/reject',
15579 anderson 1491
 
1492
 
15336 efrain 1493
    ];
1494
}
1495
 
1496
 
1497
 
15579 anderson 1498
function getAclRolesForUsertype()
1499
{
15336 efrain 1500
    return [
1 www 1501
        UserType::ADMIN => [
1502
            'home',
1503
            'signin-admin',
1504
            'signin-company',
1505
            'dashboard',
1506
            'signout',
1507
            'storage',
1508
            'settings',
15336 efrain 1509
 
15579 anderson 1510
 
15336 efrain 1511
            'settings/my-private-network',
1512
            'settings/my-private-network/navbar',
1513
            'settings/my-private-network/favicon',
1514
            'settings/my-private-network/logo',
1515
            'settings/my-private-network/styles-and-colors',
15394 efrain 1516
            'settings/my-private-network/calendar',
15831 efrain 1517
            'settings/my-private-network/moodle',
15579 anderson 1518
 
1 www 1519
            'publications',
1520
            'publications/posts',
1521
            'publications/posts/add',
1522
            'publications/posts/edit',
1523
            'publications/posts/delete',
1524
            'publications/pages',
1525
            'publications/pages/add',
1526
            'publications/pages/edit',
1527
            'publications/pages/delete',
15579 anderson 1528
 
1 www 1529
            'users',
1530
            'users/change-password',
1531
            'users/unblock',
129 efrain 1532
            'users/email-verify',
15387 efrain 1533
            'users/upload',
15579 anderson 1534
 
15896 efrain 1535
            'chat',
16263 anderson 1536
            'chat/users',
14587 efrain 1537
            'chat/heart-beat',
1538
            'chat/create-group',
1539
            'chat/add-user-to-group',
1540
            'chat/mark-seen',
1541
            'chat/mark-received',
1542
            'chat/remove-user-from-group',
1543
            'chat/get-all-messages',
1544
            'chat/send',
1545
            'chat/get-contacts-availables-for-group',
1546
            'chat/get-contact-group-list',
1547
            'chat/leave-group',
1548
            'chat/delete-group',
1549
            'chat/close',
1550
            'chat/clear',
14692 efrain 1551
            'chat/open',
14587 efrain 1552
            'chat/upload',
16246 anderson 1553
            'chat/zoom',
16258 anderson 1554
            'chat/open-or-create',
14691 efrain 1555
            'csrf',
16766 efrain 1556
 
1557
            'helpers',
1558
            'helpers/search-people',
15579 anderson 1559
 
16766 efrain 1560
 
1561
            'inmail-personal',
1562
            'inmail-personal/start-conversation',
1563
            'inmail-personal/delete',
1564
            'inmail-personal/messages',
1565
            'inmail-personal/messages/send',
1566
            'inmail-personal/messages/delete',
1567
 
1568
 
15387 efrain 1569
            'reports',
1570
            'reports/users-blocked',
15579 anderson 1571
 
15442 efrain 1572
            'activities-center',
1573
            'activities-center/performance-evaluation',
1574
            'activities-center/performance-evaluation/take-a-test',
1575
            'activities-center/performance-evaluation/report',
15579 anderson 1576
 
15461 efrain 1577
            'activities-center/recruitment-and-selection',
1578
            'activities-center/recruitment-and-selection/take-a-test',
1579
            'activities-center/recruitment-and-selection/report',
15579 anderson 1580
 
1 www 1581
        ],
15336 efrain 1582
 
1 www 1583
        UserType::USER => [
1584
            'home',
1585
            'signin-admin',
1586
            'signin-company',
1587
            'dashboard',
1588
            'signout',
1589
            'storage',
15336 efrain 1590
            'storage-network',
15579 anderson 1591
 
15088 efrain 1592
            'home',
1593
            'signin-admin',
1594
            'signin-company',
1595
            'dashboard',
1596
            'signout',
1597
            'storage',
15579 anderson 1598
 
14587 efrain 1599
            'chat',
16263 anderson 1600
            'chat/users',
14587 efrain 1601
            'chat/heart-beat',
1602
            'chat/create-group',
1603
            'chat/add-user-to-group',
1604
            'chat/mark-seen',
1605
            'chat/mark-received',
1606
            'chat/remove-user-from-group',
1607
            'chat/get-all-messages',
1608
            'chat/send',
1609
            'chat/get-contacts-availables-for-group',
1610
            'chat/get-contact-group-list',
1611
            'chat/leave-group',
1612
            'chat/delete-group',
1613
            'chat/close',
1614
            'chat/clear',
14692 efrain 1615
            'chat/open',
14588 efrain 1616
            'chat/upload',
16246 anderson 1617
            'chat/zoom',
16258 anderson 1618
            'chat/open-or-create',
14691 efrain 1619
            'csrf',
16766 efrain 1620
 
1621
            'helpers',
1622
            'helpers/search-people',
1623
 
1624
            'inmail-personal',
1625
            'inmail-personal/start-conversation',
1626
            'inmail-personal/delete',
1627
            'inmail-personal/messages',
1628
            'inmail-personal/messages/send',
1629
            'inmail-personal/messages/delete',
15579 anderson 1630
 
15442 efrain 1631
            'activities-center',
1632
            'activities-center/performance-evaluation',
1633
            'activities-center/performance-evaluation/take-a-test',
1634
            'activities-center/performance-evaluation/report',
15579 anderson 1635
 
15461 efrain 1636
            'activities-center/recruitment-and-selection',
1637
            'activities-center/recruitment-and-selection/take-a-test',
1638
            'activities-center/recruitment-and-selection/report',
14610 efrain 1639
 
15579 anderson 1640
 
1 www 1641
        ],
1642
        UserType::GUEST => [
1643
            'home',
1644
            'signin-admin',
1645
            'signin-company',
1646
            'signout',
15336 efrain 1647
            'storage-network',
8536 efrain 1648
 
15579 anderson 1649
 
1 www 1650
        ],
1651
    ];
1652
}
1653
 
15579 anderson 1654
function getAclMenuSystem()
1655
{
1 www 1656
    return [
1657
        [
1658
            'label' => 'LABEL_HOME',
1659
            'route' => 'dashboard',
1660
            'class' => 'fa fa-home'
1661
        ],
15442 efrain 1662
 
1 www 1663
        [
15336 efrain 1664
            'label' => 'LABEL_PRIVATE_NETWORKS',
1665
            'route' => 'settings/private-networks',
1666
            'class' => 'fa fa-building',
1667
        ],
15579 anderson 1668
 
1669
 
15336 efrain 1670
        [
1671
            'label' => 'LABEL_MY_PRIVATE_NETWORK',
1672
            'route' => 'settings/my-private-network',
1673
            'class' => 'fa fa-building',
1674
            'pages' => [
1675
                [
15394 efrain 1676
                    'label' => 'LABEL_MY_PRIVATE_NETWORK_CALENDAR',
1677
                    'route' => 'settings/my-private-network/calendar',
1678
                ],
1679
                [
15336 efrain 1680
                    'label' => 'LABEL_MY_PRIVATE_NETWORK_INTRO',
1681
                    'route' => 'settings/my-private-network/intro',
1682
                ],
1683
                [
1684
                    'label' => 'LABEL_MY_PRIVATE_NETWORK_NAVBAR',
1685
                    'route' => 'settings/my-private-network/navbar',
1686
                ],
1687
                [
1688
                    'label' => 'LABEL_MY_PRIVATE_NETWORK_FAVICO',
1689
                    'route' => 'settings/my-private-network/favicon',
1690
                ],
1691
                [
1692
                    'label' => 'LABEL_MY_PRIVATE_NETWORK_LOGO',
1693
                    'route' => 'settings/my-private-network/logo',
1694
                ],
1695
                [
1696
                    'label' => 'LABEL_MY_PRIVATE_NETWORK_STYLES_AND_COLORS',
1697
                    'route' => 'settings/my-private-network/styles-and-colors',
1698
                ],
15831 efrain 1699
                [
1700
                    'label' => 'LABEL_MY_PRIVATE_NETWORK_MOODLE',
1701
                    'route' => 'settings/my-private-network/moodle',
1702
                ],
15336 efrain 1703
 
15579 anderson 1704
 
1705
            ],
15336 efrain 1706
        ],
15579 anderson 1707
 
1708
 
15336 efrain 1709
        [
1 www 1710
            'label' => 'LABEL_COMPANIES',
1711
            'route' => 'companies',
1712
            'class' => 'fa fa-building',
1713
        ],
1714
        [
15442 efrain 1715
            'label' => 'LABEL_JOBS_DESCRIPTION',
1716
            'route' => 'jobs-description',
1717
            'class' => 'fa fa-book',
1 www 1718
            'pages' => [
1719
                [
15442 efrain 1720
                    'label' => 'LABEL_COMPETENCIES',
1721
                    'route' => 'jobs-description/competencies',
15392 efrain 1722
                ],
1723
                [
15442 efrain 1724
                    'label' => 'LABEL_COMPETENCY_TYPES',
1725
                    'route' => 'jobs-description/competency-types',
1 www 1726
                ],
1727
                [
15442 efrain 1728
                    'label' => 'LABEL_BEHAVIORS',
1729
                    'route' => 'jobs-description/behaviors',
1 www 1730
                ],
15442 efrain 1731
            ]
1732
        ],
1733
        [
1734
            'label' => 'LABEL_SETTINGS',
1735
            'route' => 'settings',
1736
            'class' => 'fa fa-cog',
1737
            'pages' => [
1 www 1738
                [
15442 efrain 1739
                    'label' => 'LABEL_APTITUDES',
1740
                    'route' => 'settings/aptitudes',
14875 efrain 1741
                ],
1742
                [
15460 efrain 1743
                    'label' => 'LABEL_COUNTRIES',
1744
                    'route' => 'settings/countries',
1745
                ],
1746
                [
1 www 1747
                    'label' => 'LABEL_EMAIL_TEMPLATES',
1748
                    'route' => 'settings/email-templates',
1749
                ],
1750
                [
1751
                    'label' => 'LABEL_PUSH_TEMPLATES',
1752
                    'route' => 'settings/push-templates',
1753
                ],
1754
                [
1755
                    'label' => 'LABEL_DEGREES',
1756
                    'route' => 'settings/degrees',
1757
                ],
1758
                [
15392 efrain 1759
                    'label' => 'LABEL_HOBBIES_AND_INTERESTS',
1760
                    'route' => 'settings/hobbies-and-interests',
1761
                ],
1762
                [
1 www 1763
                    'label' => 'LABEL_SKILLS',
1764
                    'route' => 'settings/skills',
1765
                ],
1766
                [
1767
                    'label' => 'LABEL_INDUSTRIES',
1768
                    'route' => 'settings/industries',
1769
                ],
1770
                [
837 geraldo 1771
                    'label' => 'LABEL_JOBS_DESCRIPTION',
15442 efrain 1772
                    'route' => 'jobs-description',
836 geraldo 1773
                ],
1774
                [
1 www 1775
                    'label' => 'LABEL_COMPANY_SIZES',
1776
                    'route' => 'settings/company-sizes',
1777
                ],
1778
                [
1779
                    'label' => 'LABEL_COMPETENCY_TYPES',
15442 efrain 1780
                    'route' => 'jobs-description/competency-types',
1 www 1781
                ],
1782
                [
1783
                    'label' => 'LABEL_GROUP_TYPES',
1784
                    'route' => 'settings/group-types',
1785
                ],
1786
            ]
1787
        ],
1788
        [
1789
            'label' => 'LABEL_PUBLICATIONS',
1790
            'route' => 'publications',
1791
            'class' => 'fa fa-book',
1792
            'pages' => [
1793
                [
1794
                    'label' => 'LABEL_PAGES',
1795
                    'route' => 'publications/pages',
1796
                ],
1797
                [
1798
                    'label' => 'LABEL_POSTS',
1799
                    'route' => 'publications/posts',
1800
                ],
1801
            ]
1802
        ],
1803
        [
1804
            'label' => 'LABEL_USERS',
1805
            'route' => 'users',
1806
            'class' => 'fa fa-users',
1807
        ],
15457 efrain 1808
        [
1809
            'label' => 'LABEL_USERS_REQUEST_ACCESS',
1810
            'route' => 'users/request-access',
1811
            'class' => 'fa fa-key',
1812
        ],
15579 anderson 1813
 
15387 efrain 1814
        [
1815
            'label' => 'LABEL_REPORTS',
1816
            'route' => 'settings',
1817
            'class' => 'fa fa-print',
1818
            'pages' => [
1819
                [
1820
                    'label' => 'LABEL_REPORTS_USERS_BLOCKED',
1821
                    'route' => 'reports/users-blocked',
1822
                ],
1823
            ]
1824
        ],
16285 efrain 1825
 
1826
        [
1827
            'label' => 'LABEL_TOOLS',
1828
            'route' => 'tools',
1829
            'class' => 'fa fa-wrench',
1830
            'pages' => [
1831
                [
1832
                    'label' => 'LABEL_USERFILE_PASSWORD_GENERATOR',
1833
                    'route' => 'tools/userfile-password-generator',
1834
                ],
1835
            ]
1836
        ],
15579 anderson 1837
 
1838
 
1333 efrain 1839
        [
1 www 1840
            'label' => 'LABEL_LOGOUT',
1841
            'route' => 'signout',
1842
            'class' => 'fa fa-sign-out',
1843
        ]
779 geraldo 1844
    ];
1 www 1845
}
1846
 
15579 anderson 1847
function getAclMenuCompany()
1848
{
779 geraldo 1849
 
1 www 1850
    return [
15442 efrain 1851
        /*[
1 www 1852
            'label' => 'LABEL_HOME',
1853
            'route' => 'dashboard',
1854
            'class' => 'fa fa-home'
15442 efrain 1855
        ],*/
1856
        [
1857
            'label' => 'LABEL_ACTIVITY_CENTER',
1858
            'route' => 'activities-center',
1859
            'class' => 'fa fa-home',
1860
            'pages' => [
1861
                [
1862
                    'label' => 'LABEL_PERFORMANCE_EVALUATION',
1863
                    'route' => 'activities-center/performance-evaluation',
1864
                ],
15461 efrain 1865
                [
1866
                    'label' => 'LABEL_RECRUITMENT_AND_SELECTION',
1867
                    'route' => 'activities-center/recruitment-and-selection',
1868
                ],
1869
 
15579 anderson 1870
 
15442 efrain 1871
            ],
1 www 1872
        ],
1873
        [
1874
            'label' => 'LABEL_JOBS',
1875
            'route' => 'jobs',
1876
            'class' => 'fa fa-briefcase'
1877
        ],
1878
        [
1879
            'label' => 'LABEL_FEEDS',
1880
            'route' => 'feeds',
1881
            'class' => 'fa fa-rss'
1882
        ],
114 efrain 1883
        [
16766 efrain 1884
            'label' => 'LABEL_INMAIL_PERSONAL',
1885
            'route' => 'inmail-personal',
13487 nelberth 1886
            'class' => 'fa fa-envelope-o'
1887
        ],
1888
        [
16766 efrain 1889
            'label' => 'LABEL_INMAIL_COMPANY',
1890
            'route' => 'inmail-company',
1891
            'class' => 'fa fa-envelope-o'
1892
        ],
1893
        [
15401 efrain 1894
            'label' => 'LABEL_DISCOVERY_CONTACTS',
1895
            'route' => 'discovery-contacts',
1896
            'class' => 'fa fa-book',
1897
            'pages' => [
1898
                [
1899
                    'label' => 'LABEL_CONTACTS',
1900
                    'route' => 'discovery-contacts',
1901
                ],
1902
                [
1903
                    'label' => 'LABEL_INTERACTION_TYPES',
1904
                    'route' => 'discovery-contacts/interaction-types',
1905
                ],
15633 anderson 1906
                [
1907
                    'label' => 'LABEL_PROGRESS_BY_DAY',
15636 anderson 1908
                    'route' => 'discovery-contacts/progress-by-day',
15633 anderson 1909
                ],
16758 efrain 1910
                [
1911
                    'label' => 'LABEL_REPORTS',
1912
                    'route' => 'discovery-contacts/report',
1913
                ],
15401 efrain 1914
            ],
1915
        ],
15451 efrain 1916
        [
16248 efrain 1917
            'label' => 'LABEL_KNOWLEDGE_AREA',
1918
            'route' => 'knowledge-area',
1919
            'class' => 'fa fa-book',
1920
            'pages' => [
1921
                [
1922
                    'label' => 'LABEL_CATEGORIES',
1923
                    'route' => 'knowledge-area/categories',
1924
                ],
1925
                [
1926
                    'label' => 'LABEL_USERS',
1927
                    'route' => 'knowledge-area/categories/users',
1928
                ],
1929
            ],
1930
        ],
1931
        [
15451 efrain 1932
            'label' => 'LABEL_MY_COACH',
1933
            'route' => 'my-coach',
1934
            'class' => 'fa fa-book',
1935
            'pages' => [
1936
                [
1937
                    'label' => 'LABEL_CATEGORIES',
1938
                    'route' => 'my-coach/categories',
1939
                ],
15831 efrain 1940
                [
1941
                    'label' => 'LABEL_USERS',
1942
                    'route' => 'my-coach/categories/users',
1943
                ],
15451 efrain 1944
            ],
1945
        ],
16263 anderson 1946
 
1947
 
15401 efrain 1948
        [
114 efrain 1949
            'label' => 'LABEL_SELF_EVALUATION',
1950
            'route' => 'self-evaluation',
1951
            'class' => 'fa fa-book',
1952
            'pages' => [
1953
                [
1954
                    'label' => 'LABEL_FORMS',
1955
                    'route' => 'self-evaluation/forms',
1956
                ],
115 efrain 1957
                [
1958
                    'label' => 'LABEL_USERS',
1959
                    'route' => 'self-evaluation/users',
246 geraldo 1960
                ],
1961
                [
1962
                    'label' => 'LABEL_REVIEWS',
1963
                    'route' => 'self-evaluation/reviews',
245 geraldo 1964
                ]
779 geraldo 1965
            ],
1966
        ],
15579 anderson 1967
 
1 www 1968
        [
15540 efrain 1969
            'label' => 'LABEL_ENGAGEMENT',
1970
            'route' => 'engagement',
1971
            'class' => 'fa fa-book',
1972
            'pages' => [
1973
                [
1974
                    'label' => 'LABEL_SETTINGS',
1975
                    'route' => 'engagement/setup',
1976
                ],
15542 efrain 1977
                [
1978
                    'label' => 'LABEL_ENGAGEMENT_REWARDS',
1979
                    'route' => 'engagement/rewards',
1980
                ],
15579 anderson 1981
 
15540 efrain 1982
            ]
1983
        ],
15579 anderson 1984
 
15540 efrain 1985
        [
1986
            'label' => 'LABEL_DAILY_PULSE',
1987
            'route' => 'daily-pulse',
1988
            'class' => 'fa fa-smile-o',
1989
            'pages' => [
1990
                [
1991
                    'label' => 'LABEL_DAILY_PULSE_EMOJIS',
1992
                    'route' => 'daily-pulse/emojis',
1993
                ],
1994
                [
1995
                    'label' => 'LABEL_DAILY_PULSE_REPORTS_OVERVIEW',
1996
                    'route' => 'daily-pulse/reports/overview',
1997
                ],
15579 anderson 1998
            ],
1999
        ],
15540 efrain 2000
 
15579 anderson 2001
 
2002
 
2003
 
15540 efrain 2004
        [
1 www 2005
            'label' => 'LABEL_MICRO_LEARNING',
2006
            'route' => 'microlearning',
2007
            'class' => 'fa fa-book',
2008
            'pages' => [
2009
                [
2010
                    'label' => 'LABEL_OVERVIEW',
2011
                    'route' => 'microlearning/overview',
2012
                ],
2013
                [
2014
                    'label' => 'LABEL_REPORTS',
2015
                    'route' => 'microlearning/reports',
2 efrain 2016
                    'pages' => [
2017
                        [
15390 efrain 2018
                            'label' => 'LABEL_DEVICES_AND_ACCESS',
2019
                            'route' => 'microlearning/reports/devices-and-access',
2 efrain 2020
                        ],
15579 anderson 2021
                        /*
2 efrain 2022
                        [
2023
                            'label' => 'LABEL_PROGRESS',
2024
                            'route' => 'microlearning/reports/progress',
2025
                        ],
14626 efrain 2026
*/
14610 efrain 2027
                        [
15386 efrain 2028
                            'label' => 'LABEL_PROGRESS_FOR_TOPIC',
2029
                            'route' => 'microlearning/reports/progress-for-topic',
2030
                        ],
2031
                        [
14610 efrain 2032
                            'label' => 'LABEL_PROGRESS_FOR_CAPSULE',
2033
                            'route' => 'microlearning/reports/progress-for-capsule',
2034
                        ],
15386 efrain 2035
                        [
2036
                            'label' => 'LABEL_PROGRESS_FOR_STUDENT',
2037
                            'route' => 'microlearning/reports/progress-for-student',
2038
                        ],
779 geraldo 2039
                    ],
1 www 2040
                ],
2041
                [
2042
                    'label' => 'LABEL_CONTENT',
2043
                    'route' => 'microlearning/content',
2044
                    'pages' => [
2045
                        [
66 efrain 2046
                            'label' => 'LABEL_QUIZZES',
2047
                            'route' => 'microlearning/content/quizzes',
2048
                        ],
2049
                        [
1 www 2050
                            'label' => 'LABEL_TOPICS',
2051
                            'route' => 'microlearning/content/topics',
2052
                        ],
2053
                        [
2054
                            'label' => 'LABEL_CAPSULES',
2055
                            'route' => 'microlearning/content/capsules',
2056
                        ],
2057
                        [
2058
                            'label' => 'LABEL_SLIDES',
2059
                            'route' => 'microlearning/content/slides',
2060
                        ],
2061
                    ]
2062
                ],
2063
                [
2064
                    'label' => 'LABEL_ACCESS_FOR_STUDENTS',
2065
                    'route' => 'microlearning/access-for-students',
2066
                ],
2067
                [
2068
                    'label' => 'LABEL_STUDENTS',
2069
                    'route' => 'microlearning/students',
2070
                ],
2071
                [
2072
                    'label' => 'LABEL_FILTERS',
2073
                    'route' => 'microlearning/settings',
2074
                    'pages' => [
2075
                        [
15394 efrain 2076
                            'label' => 'LABEL_COUNTRIES',
2077
                            'route' => 'microlearning/settings/countries',
2078
                        ],
2079
                        [
1 www 2080
                            'label' => 'LABEL_COMPANIES',
2081
                            'route' => 'microlearning/settings/companies',
2082
                        ],
15579 anderson 2083
 
1 www 2084
                        [
2085
                            'label' => 'LABEL_FUNCTIONS',
2086
                            'route' => 'microlearning/settings/functions',
2087
                        ],
2088
                        [
2089
                            'label' => 'LABEL_GROUPS',
2090
                            'route' => 'microlearning/settings/groups',
2091
                        ],
2092
                        [
2093
                            'label' => 'LABEL_INSTITUTIONS',
2094
                            'route' => 'microlearning/settings/institutions',
2095
                        ],
2096
                        [
2097
                            'label' => 'LABEL_PROGRAMS',
2098
                            'route' => 'microlearning/settings/programs',
2099
                        ],
2100
                        [
2101
                            'label' => 'LABEL_PARTNERS',
2102
                            'route' => 'microlearning/settings/partners',
2103
                        ],
2104
                        [
2105
                            'label' => 'LABEL_SECTORS',
2106
                            'route' => 'microlearning/settings/sectors',
2107
                        ],
2108
                        [
2109
                            'label' => 'LABEL_STUDENT_TYPES',
2110
                            'route' => 'microlearning/settings/student-types',
2111
                        ],
779 geraldo 2112
                    ],
1 www 2113
                ]
2114
            ]
2115
        ],
2116
        [
16766 efrain 2117
            'label' => 'LABEL_JOBS_DESCRIPTION_DICTIONARY',
15442 efrain 2118
            'route' => 'jobs-description',
28 efrain 2119
            'class' => 'fa fa-book',
2120
            'pages' => [
2121
                [
66 efrain 2122
                    'label' => 'LABEL_JOBS_DESCRIPTION',
15442 efrain 2123
                    'route' => 'jobs-description',
28 efrain 2124
                ],
2125
                [
2126
                    'label' => 'LABEL_COMPETENCIES',
15442 efrain 2127
                    'route' => 'jobs-description/competencies',
28 efrain 2128
                ],
66 efrain 2129
                [
2130
                    'label' => 'LABEL_COMPETENCY_TYPES',
15442 efrain 2131
                    'route' => 'jobs-description/competency-types',
66 efrain 2132
                ],
67 efrain 2133
                [
14875 efrain 2134
                    'label' => 'LABEL_BEHAVIORS',
15442 efrain 2135
                    'route' => 'jobs-description/behaviors',
14875 efrain 2136
                ],
16766 efrain 2137
 
2138
            ]
2139
        ],
2140
        [
16770 efrain 2141
            'label' => 'LABEL_ORGANIZATION',
2142
            'route' => 'organization',
16766 efrain 2143
            'class' => 'fa fa-sitemap',
2144
            'pages' => [
14875 efrain 2145
                [
67 efrain 2146
                    'label' => 'LABEL_POSITIONS',
16770 efrain 2147
                    'route' => 'organization/positions',
67 efrain 2148
                ],
16766 efrain 2149
 
2150
            ],
779 geraldo 2151
        ],
16766 efrain 2152
 
2153
 
22 steven 2154
        [
1090 geraldo 2155
            'label' => 'LABEL_PERFORMANCE_EVALUATION_MENU',
976 geraldo 2156
            'route' => 'performance-evaluation',
2157
            'class' => 'fa fa-book',
2158
            'pages' => [
2159
                [
2160
                    'label' => 'LABEL_FORMS',
2161
                    'route' => 'performance-evaluation/forms',
2162
                ],
15579 anderson 2163
 
976 geraldo 2164
                [
15442 efrain 2165
                    'label' => 'LABEL_EVALUATIONS',
2166
                    'route' => 'performance-evaluation/evaluations',
1383 efrain 2167
                ]
976 geraldo 2168
            ],
946 geraldo 2169
        ],
1321 eleazar 2170
        [
1 www 2171
            'label' => 'LABEL_PROFILE',
2172
            'route' => 'profile',
2173
            'class' => 'fa fa-picture-o'
2174
        ],
2175
        [
2176
            'label' => 'LABEL_FOLLOWERS',
2177
            'route' => 'followers',
2178
            'class' => 'fa fa-heart'
2179
        ],
2180
        [
2181
            'label' => 'LABEL_USERS',
2182
            'route' => 'users',
2183
            'class' => 'fa fa-users',
2184
        ],
15579 anderson 2185
 
1 www 2186
        [
1334 efrain 2187
            'label' => 'LABEL_OWN_PROFESSIONAL_NETWORK',
2188
            'route' => 'own-professional-network',
2189
            'class' => 'fa fa-book',
2190
        ],
15579 anderson 2191
 
1334 efrain 2192
        [
2193
            'label' => 'LABEL_ORGANIZATIONAL_DESIGN',
2194
            'route' =>  'organizational-design',
2195
            'class' => 'fa fa-book',
2196
        ],
15579 anderson 2197
 
2198
 
1334 efrain 2199
        [
8187 nelberth 2200
            'label' => 'LABEL_HIGH_PERFORMANCE_TEAMS',
12397 nelberth 2201
            'route' =>  'high-performance-teams/groups',
1689 nelberth 2202
            'class' => 'fa fa-street-view',
15579 anderson 2203
 
1334 efrain 2204
        ],
2205
        [
16785 efrain 2206
            'label' => 'LABEL_PLANNING',
2207
            'route' => 'planning',
12397 nelberth 2208
            'class' => 'fa fa-book',
16785 efrain 2209
            'pages' => [
2210
                [
2211
                    'label' => 'LABEL_PLANNING_PERIODS',
2212
                    'route' => 'planning/periods',
2213
                ],
2214
                [
2215
                    'label' => 'LABEL_PLANNING_OBJECTIVES',
2216
                    'route' => 'planning/objectives',
2217
                ],
2218
                [
2219
                    'label' => 'LABEL_PLANNING_GOALS',
2220
                    'route' => 'planning/goals',
2221
                ],
2222
                [
2223
                    'label' => 'LABEL_PLANNING_TASKS',
2224
                    'route' => 'planning/tasks',
2225
                ],
2226
            ],
12397 nelberth 2227
        ],
2228
        [
1334 efrain 2229
            'label' => 'LABEL_RECRUITMENT_AND_SELECTION',
1477 efrain 2230
            'route' => 'recruitment-and-selection',
1334 efrain 2231
            'class' => 'fa fa-book',
1342 eleazar 2232
            'pages' => [
2233
                [
1463 eleazar 2234
                    'label' => 'LABEL_VACANCIES',
1478 eleazar 2235
                    'route' => 'recruitment-and-selection/vacancies',
1342 eleazar 2236
                ],
15579 anderson 2237
 
1459 eleazar 2238
                [
15461 efrain 2239
                    'label' => 'LABEL_APPLICATIONS',
2240
                    'route' => 'recruitment-and-selection/applications',
1709 eleazar 2241
                ],
15461 efrain 2242
                /*
1709 eleazar 2243
                [
2244
                    'label' => 'LABEL_INTERVIEW',
4047 eleazar 2245
                    'route' => 'recruitment-and-selection/interview/form',
2246
 
15461 efrain 2247
                ]*/
15579 anderson 2248
            ],
1334 efrain 2249
        ],
15579 anderson 2250
 
1334 efrain 2251
        [
2252
            'label' => 'LABEL_INDUCTION',
2253
            'route' => 'induction',
2254
            'class' => 'fa fa-book',
2255
        ],
15579 anderson 2256
 
2257
 
1334 efrain 2258
        [
2259
            'label' => 'LABEL_ORGANIZATIONAL_CLIMATE',
2260
            'route' => 'organizational-climate',
2261
            'class' => 'fa fa-book',
7218 eleazar 2262
            'pages' => [
2263
                [
2264
                    'label' => 'LABEL_FORMS',
2265
                    'route' => 'organizational-climate/form',
2266
                ],
2267
                [
2268
                    'label' => 'LABEL_SURVEY',
2269
                    'route' => 'organizational-climate',
2270
                ],
2271
                [
2272
                    'label' => 'LABEL_SURVEY_TEST',
2273
                    'route' => 'organizational-climate/test',
2274
                ],
2275
                [
2276
                    'label' => 'LABEL_SURVEY_REPORT',
2277
                    'route' => 'organizational-climate/report',
2278
                ],
2279
            ]
1334 efrain 2280
        ],
15579 anderson 2281
 
1334 efrain 2282
        [
2283
            'label' => 'LABEL_CULTURE',
2284
            'route' =>  'culture',
2285
            'class' => 'fa fa-book',
2286
        ],
16766 efrain 2287
/*
1334 efrain 2288
        [
2289
            'label' => 'LABEL_COMMUNICATION',
13969 nelberth 2290
            'route' =>  'communication/inbox',
13012 nelberth 2291
            'class' => 'fa fa-envelope',
15579 anderson 2292
 
2293
 
1334 efrain 2294
        ],
16766 efrain 2295
*/
1334 efrain 2296
        [
16701 efrain 2297
            'label' => 'LABEL_FAST_SURVEYS',
2298
            'route' =>  'fast-survey',
2299
            'class' => 'fa fa-book',
2300
        ],
2301
        [
1334 efrain 2302
            'label' => 'LABEL_SURVEYS',
4375 eleazar 2303
            'route' =>  'survey',
1334 efrain 2304
            'class' => 'fa fa-book',
4374 eleazar 2305
            'pages' => [
2306
                [
2307
                    'label' => 'LABEL_FORMS',
4375 eleazar 2308
                    'route' => 'survey/form',
4374 eleazar 2309
                ],
4579 eleazar 2310
                [
2311
                    'label' => 'LABEL_SURVEY',
2312
                    'route' => 'survey',
2313
                ],
5287 eleazar 2314
                [
2315
                    'label' => 'LABEL_SURVEY_TEST',
2316
                    'route' => 'survey/test',
2317
                ],
5823 eleazar 2318
                [
2319
                    'label' => 'LABEL_SURVEY_REPORT',
2320
                    'route' => 'survey/report',
2321
                ],
4374 eleazar 2322
            ]
1334 efrain 2323
        ],
15579 anderson 2324
 
1334 efrain 2325
        [
2326
            'label' => 'LABEL_BUILDING_MY_FUTURE',
2327
            'route' =>  'building-my-future',
2328
            'class' => 'fa fa-book',
2329
        ],
15579 anderson 2330
 
2331
 
2332
 
1334 efrain 2333
        [
15355 efrain 2334
            'label' => 'LABEL_SETTINGS',
2335
            'route' => 'settings',
2336
            'class' => 'fa fa-cog',
2337
            'pages' => [
2338
                [
2339
                    'label' => 'LABEL_PUSH_TEMPLATES',
2340
                    'route' => 'settings/push-templates',
2341
                ],
2342
            ]
2343
        ],
15579 anderson 2344
 
15387 efrain 2345
        [
2346
            'label' => 'LABEL_REPORTS',
2347
            'route' => 'settings',
2348
            'class' => 'fa fa-print',
2349
            'pages' => [
2350
                [
2351
                    'label' => 'LABEL_REPORTS_USERS_BLOCKED',
2352
                    'route' => 'reports/users-blocked',
2353
                ],
2354
            ]
2355
        ],
15579 anderson 2356
 
1334 efrain 2357
        [
1 www 2358
            'label' => 'LABEL_LOGOUT',
2359
            'route' => 'signout',
2360
            'class' => 'fa fa-sign-out',
2361
        ]
2362
    ];
2363
}