Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5223 | Rev 5546 | 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
553 geraldo 2
 
1 www 3
use LeadersLinked\Model\UserType;
4
 
553 geraldo 5
function getAclResources() {
1 www 6
    return [
7
        'home',
8
        'onroom',
9
        'signin',
10
        'signin/facebook',
11
        'signin/twitter',
12
        'signin/google',
3639 efrain 13
        'signin/impersonate',
3298 efrain 14
        'share',
4778 efrain 15
        'share/increment-external-counter',
1 www 16
        'signout',
17
        'signup',
18
        'backend',
19
        'backend/signin-admin',
20
        'backend/signin-company',
3775 efrain 21
        'shorter',
22
        'shorter/generate',
210 efrain 23
        'csrf',
1 www 24
        'check-session',
3639 efrain 25
        'impersonate',
26
        'impersonate/execute',
1 www 27
        'notifications',
3262 efrain 28
        'notifications/mark-read',
29
        'notifications/mark-all-read',
30
        'notifications/delete',
31
        'notifications/clear',
32
        'notifications/unreads',
1 www 33
        'reset-password',
34
        'forgot-password',
35
        'activate-account',
36
        'professionalism-policy',
37
        'privacy-policy',
38
        'terms-and-conditions',
39
        'cookies',
40
        'help',
41
        'oauth',
42
        'oauth/facebook',
43
        'oauth/facebook/cancel',
44
        'oauth/facebook/delete',
45
        'oauth/twitter',
46
        'oauth/google',
47
        'oauth/instagram',
48
        'paypal',
49
        'paypal/success',
50
        'paypal/cancel',
51
        'services',
52
        'services/device',
53
        'services/check-session',
54
        'services/fcm',
55
        'services/signin',
56
        'services/signout',
57
        'services/sync',
58
        'services/sync-batch',
59
        'services/storage',
60
        'services/microlearning',
61
        'services/microlearning/refresh',
62
        'services/microlearning/check-changes',
280 efrain 63
        'services/microlearning/capsules',
64
        'services/microlearning/capsules/comments',
65
        'services/microlearning/capsules/comments/add',
66
        'services/microlearning/capsules/comments/delete',
1979 efrain 67
        'services/delete-account',
1 www 68
        'storage',
3639 efrain 69
        'storage-network',
1 www 70
        'dashboard',
71
        'post',
4808 efrain 72
        'post/comments',
73
        'post/comments/add',
74
        'post/comments/delete',
75
        'post/like',
76
        'post/unlike',
77
 
1 www 78
        'feed',
79
        'feed/timeline',
80
        'feed/add',
81
        'feed/delete',
82
        'feed/share',
83
        'feed/comment',
84
        'feed/comment/delete',
85
        'feed/like',
86
        'feed/unlike',
87
        'connection',
88
        'connection/my-connections',
89
        'connection/people-you-may-know',
90
        'connection/people-blocked',
91
        'connection/people-blocked/delete',
92
        'connection/invitations-sent',
93
        'connection/invitations-received',
94
        'connection/request',
95
        'connection/approve',
96
        'connection/reject',
97
        'connection/block',
98
        'connection/cancel',
99
        'connection/delete',
100
        'connection/unblock',
101
        'account-settings',
102
        'account-settings/image',
103
        'account-settings/deactivate',
104
        'account-settings/notifications',
105
        'account-settings/password',
106
        'account-settings/social-networks',
107
        'account-settings/location',
108
        'account-settings/privacy',
109
        'account-settings/basic',
110
        'account-settings/browsers',
111
        'account-settings/ips',
112
        'account-settings/devices',
113
        'account-settings/transactions',
114
        'account-settings/transactions/add-funds',
115
        'account-settings/add-facebook',
116
        'account-settings/remove-facebook',
117
        'account-settings/add-twitter',
118
        'account-settings/remove-twitter',
119
        'account-settings/add-google',
120
        'account-settings/remove-google',
1979 efrain 121
        'account-settings/delete-account',
1 www 122
        'search',
123
        'search/company',
124
        'search/group',
125
        'search/job',
126
        'search/user',
127
        'moodle',
128
        'profile',
129
        'profile/self-evaluation',
130
        'profile/self-evaluation/take-a-test',
279 efrain 131
        'profile/self-evaluation/report',
553 geraldo 132
        'profile/performance-evaluation',
133
        'profile/performance-evaluation/take-a-test',
134
        'profile/performance-evaluation/report',
1 www 135
        'profile/microlearning',
136
        'profile/microlearning/timeline',
137
        'profile/microlearning/progress',
138
        'profile/view',
139
        'profile/people-viewed-profile',
140
        'profile/my-profiles',
141
        'profile/my-profiles/extended',
142
        'profile/my-profiles/cover',
143
        'profile/my-profiles/image',
144
        'profile/my-profiles/experience',
145
        'profile/my-profiles/education',
146
        'profile/my-profiles/language',
147
        'profile/my-profiles/location',
148
        'profile/my-profiles/skill',
149
        'profile/my-profiles/social-network',
3912 efrain 150
        'profile/my-profiles/aptitude',
151
        'profile/my-profiles/hobby-and-interest',
1 www 152
        'profile/my-profiles/add',
153
        'profile/my-profiles/edit',
154
        'profile/my-profiles/delete',
155
        'company',
156
        'company/my-companies',
157
        'company/my-companies/add',
158
        'company/following-companies',
159
        'company/view',
160
        'company/follow',
161
        'company/unfollow',
162
        'company/request',
163
        'company/reject',
164
        'company/accept',
165
        'company/cancel',
166
        'company/leave',
167
        'company/requests-sent',
168
        'company/invitations-received',
169
        'company/i-work-with',
170
        'group',
171
        'group/view',
172
        'group/request',
173
        'group/leave',
174
        'group/cancel',
1360 efrain 175
        'group/accept',
176
        'group/reject',
1 www 177
        'group/my-groups',
178
        'group/my-groups/accessibility',
179
        'group/my-groups/industry',
180
        'group/my-groups/extended',
181
        'group/my-groups/type',
182
        'group/my-groups/users',
183
        'group/my-groups/image',
184
        'group/my-groups/cover',
185
        'group/my-groups/website',
186
        'group/my-groups/privacy',
187
        'group/my-groups/add',
188
        'group/my-groups/edit',
189
        'group/my-groups/delete',
190
        'group/my-groups/status',
191
        'group/joined-groups',
192
        'group/requests-sent',
193
        'group/invitations-received',
194
        'group/members',
195
        'group/members/approve',
196
        'group/members/reject',
197
        'group/members/invite',
198
        'group/members/cancel',
199
        'job',
200
        'job/view',
201
        'job/applied-jobs',
202
        'job/apply-job',
203
        'job/remove-apply-job',
204
        'job/saved-jobs',
205
        'job/save-job',
206
        'job/remove-save-job',
207
        'inmail',
208
        'inmail/block',
209
        'inmail/delete',
210
        'inmail/message',
211
        'inmail/message/send',
212
        'inmail/message/delete',
213
        'chat',
4857 efrain 214
        'chat/users',
1 www 215
        'chat/heart-beat',
216
        'chat/create-group',
217
        'chat/add-user-to-group',
218
        'chat/mark-seen',
219
        'chat/mark-received',
220
        'chat/remove-user-from-group',
221
        'chat/get-all-messages',
222
        'chat/send',
223
        'chat/get-contacts-availables-for-group',
224
        'chat/get-contact-group-list',
225
        'chat/leave-group',
226
        'chat/delete-group',
227
        'chat/close',
228
        'chat/clear',
3121 efrain 229
        'chat/open',
1 www 230
        'chat/upload',
4113 efrain 231
        'chat/zoom',
5343 efrain 232
        'chat/open-or-create',
233
 
1 www 234
        'helpers',
235
        'helpers/search-people',
236
        'helpers/posts',
237
        'helpers/people-you-may-know',
238
        'helpers/people-viewed-profile',
239
        'helpers/company-follower',
240
        'helpers/company-suggestion',
241
        'helpers/group-members',
242
        'helpers/group-members/invite',
243
        'helpers/group-members/cancel',
244
        'helpers/group-members/reject',
245
        'helpers/group-members/approve',
246
        'helpers/groups-suggestion',
3298 efrain 247
        'helpers/my-groups',
2444 efrain 248
        'helpers/footer',
4179 efrain 249
        'helpers/next-events',
1 www 250
        'marketplace',
251
        'marketplace/categories',
252
        'marketplace/enroll',
5223 efrain 253
        'marketplace/claim',
1 www 254
        'marketplace/join',
255
        'marketplace/buy',
4113 efrain 256
        'calendar',
257
        'calendar/events',
4398 efrain 258
 
4131 efrain 259
 
4419 efrain 260
        //'zoom',
261
        //'zoom/add',
262
        //'zoom/delete',
263
       // 'zoom/listing',
5050 efrain 264
 
265
        'my-coach',
5205 efrain 266
        'daily-pulse',
267
        'daily-pulse/how_are_you_feel',
268
        'daily-pulse/climate_on_your_organization',
1 www 269
    ];
5205 efrain 270
 
1 www 271
}
272
 
3639 efrain 273
function getAclSuperAdmin() {
274
    return [
275
        'impersonate',
276
        'impersonate/execute',
277
    ];
278
 
279
}
280
 
281
function getAclUsertypeDefaultNetwork()
282
{
283
    return [
284
        UserType::ADMIN => [
285
            'company',
286
            'company/my-companies',
287
            'company/my-companies/add',
288
            'company/following-companies',
289
            'company/view',
290
            'company/follow',
291
            'company/unfollow',
292
            'company/request',
293
            'company/reject',
294
            'company/accept',
295
            'company/cancel',
296
            'company/leave',
297
            'company/requests-sent',
298
            'company/invitations-received',
299
            'company/i-work-with',
300
            'search',
301
            'search/company',
5050 efrain 302
 
303
            'my-coach',
3639 efrain 304
        ]  ,
305
        UserType::USER => [
306
            'company',
307
            'company/my-companies',
308
            'company/my-companies/add',
309
            'company/following-companies',
310
            'company/view',
311
            'company/follow',
312
            'company/unfollow',
313
            'company/request',
314
            'company/reject',
315
            'company/accept',
316
            'company/cancel',
317
            'company/leave',
318
            'company/requests-sent',
319
            'company/invitations-received',
320
            'company/i-work-with',
321
            'search',
322
            'search/company',
5050 efrain 323
 
324
            'my-coach',
325
 
326
 
3639 efrain 327
        ]  ,
328
    ];
329
}
330
 
331
 
332
function getAclUsertypeOtherNetworkCreator()
333
{
334
    return [
335
        'company',
336
        'company/my-companies',
337
        'company/view',
3674 efrain 338
 
3639 efrain 339
    ];
340
}
341
 
342
function getAclUsertypeOtherNetworkNonCreator()
343
{
344
    return [
345
        'company',
346
        'company/i-work-with',
347
        'company/view',
348
    ];
349
}
350
 
351
 
5205 efrain 352
function getAclDailyPulse()
353
{
354
    return [
355
        'daily-pulse',
356
        'daily-pulse/how_are_you_feel',
357
        'daily-pulse/climate_on_your_organization',
358
    ];
359
}
3639 efrain 360
 
5205 efrain 361
 
362
 
553 geraldo 363
function getAclUsertype() {
1 www 364
    return [
365
        UserType::ADMIN => [
366
            'home',
3298 efrain 367
            'share',
4778 efrain 368
            'share/increment-external-counter',
1 www 369
            'onroom',
370
            'signin',
371
            'signin/facebook',
372
            'signin/twitter',
373
            'signin/google',
3639 efrain 374
            'signin/impersonate',
1 www 375
            'signout',
376
            'signup',
210 efrain 377
            'csrf',
1 www 378
            'check-session',
3775 efrain 379
            'shorter',
380
            'shorter/generate',
381
 
1 www 382
            'notifications',
3262 efrain 383
            'notifications/mark-read',
384
            'notifications/mark-all-read',
385
            'notifications/delete',
386
            'notifications/clear',
387
            'notifications/unreads',
388
 
1 www 389
            'reset-password',
390
            'forgot-password',
391
            'professionalism-policy',
392
            'activate-account',
393
            'privacy-policy',
394
            'terms-and-conditions',
395
            'cookies',
396
            'backend',
397
            'backend/signin-admin',
398
            'backend/signin-company',
399
            'oauth',
400
            'oauth/facebook',
401
            'oauth/facebook/cancel',
402
            'oauth/facebook/delete',
403
            'oauth/twitter',
404
            'oauth/google',
405
            'oauth/instagram',
406
            'paypal',
407
            'paypal/success',
408
            'paypal/cancel',
409
            'services',
410
            'services/device',
411
            'services/check-session',
412
            'services/fcm',
413
            'services/signin',
414
            'services/signout',
415
            'services/sync',
416
            'services/sync-batch',
417
            'services/storage',
418
            'services/microlearning',
419
            'services/microlearning/refresh',
420
            'services/microlearning/check-changes',
280 efrain 421
            'services/microlearning/capsules',
422
            'services/microlearning/capsules/comments',
423
            'services/microlearning/capsules/comments/add',
424
            'services/microlearning/capsules/comments/delete',
1979 efrain 425
            'services/delete-account',
1 www 426
            'storage',
3639 efrain 427
            'storage-network',
1 www 428
            'dashboard',
429
            'post',
4808 efrain 430
            'post/comments',
431
            'post/comments/add',
432
            'post/comments/delete',
433
            'post/like',
434
            'post/unlike',
1 www 435
            'feed',
436
            'feed/timeline',
437
            'feed/add',
438
            'feed/delete',
439
            'feed/share',
440
            'feed/comment',
441
            'feed/comment/delete',
442
            'feed/like',
443
            'feed/unlike',
444
            'connection',
445
            'connection/my-connections',
446
            'connection/people-you-may-know',
447
            'connection/people-blocked',
448
            'connection/people-blocked/delete',
449
            'connection/invitations-sent',
450
            'connection/invitations-received',
451
            'connection/request',
452
            'connection/approve',
453
            'connection/reject',
454
            'connection/block',
455
            'connection/cancel',
456
            'connection/delete',
457
            'connection/unblock',
458
            'account-settings',
459
            'account-settings/image',
460
            'account-settings/deactivate',
461
            'account-settings/notifications',
462
            'account-settings/password',
463
            'account-settings/social-networks',
464
            'account-settings/location',
465
            'account-settings/privacy',
466
            'account-settings/basic',
467
            'account-settings/browsers',
468
            'account-settings/ips',
469
            'account-settings/devices',
470
            'account-settings/transactions',
471
            'account-settings/transactions/add-funds',
472
            'account-settings/add-facebook',
473
            'account-settings/remove-facebook',
474
            'account-settings/add-twitter',
475
            'account-settings/remove-twitter',
476
            'account-settings/add-google',
477
            'account-settings/remove-google',
1979 efrain 478
            'account-settings/delete-account',
1 www 479
            'search',
480
            'search/group',
481
            'search/job',
482
            'search/user',
483
            'moodle',
484
            'profile',
485
            'profile/self-evaluation',
486
            'profile/self-evaluation/take-a-test',
279 efrain 487
            'profile/self-evaluation/report',
554 geraldo 488
            'profile/performance-evaluation',
489
            'profile/performance-evaluation/take-a-test',
490
            'profile/performance-evaluation/report',
1 www 491
            'profile/microlearning',
492
            'profile/microlearning/timeline',
493
            'profile/microlearning/progress',
494
            'profile/view',
495
            'profile/people-viewed-profile',
496
            'profile/my-profiles',
497
            'profile/my-profiles/extended',
498
            'profile/my-profiles/cover',
499
            'profile/my-profiles/image',
500
            'profile/my-profiles/experience',
501
            'profile/my-profiles/education',
502
            'profile/my-profiles/language',
503
            'profile/my-profiles/location',
504
            'profile/my-profiles/skill',
505
            'profile/my-profiles/social-network',
3912 efrain 506
            'profile/my-profiles/aptitude',
507
            'profile/my-profiles/hobby-and-interest',
1 www 508
            'profile/my-profiles/add',
509
            'profile/my-profiles/edit',
510
            'profile/my-profiles/delete',
3639 efrain 511
 
1 www 512
            'group',
513
            'group/view',
514
            'group/request',
515
            'group/leave',
516
            'group/cancel',
1360 efrain 517
            'group/accept',
518
            'group/reject',
1 www 519
            'group/my-groups',
520
            'group/my-groups/accessibility',
521
            'group/my-groups/industry',
522
            'group/my-groups/extended',
523
            'group/my-groups/type',
524
            'group/my-groups/users',
525
            'group/my-groups/image',
526
            'group/my-groups/cover',
527
            'group/my-groups/website',
528
            'group/my-groups/privacy',
529
            'group/my-groups/add',
530
            'group/my-groups/edit',
531
            'group/my-groups/delete',
532
            'group/my-groups/status',
533
            'group/joined-groups',
534
            'group/requests-sent',
535
            'group/invitations-received',
536
            'group/members',
537
            'group/members/approve',
538
            'group/members/reject',
539
            'group/members/invite',
540
            'group/members/cancel',
541
            'job',
542
            'job/view',
543
            'job/applied-jobs',
544
            'job/apply-job',
545
            'job/remove-apply-job',
546
            'job/saved-jobs',
547
            'job/save-job',
548
            'job/remove-save-job',
549
            'inmail',
550
            'inmail/block',
551
            'inmail/delete',
552
            'inmail/message',
553
            'inmail/message/send',
554
            'inmail/message/delete',
555
            'chat',
4857 efrain 556
            'chat/users',
1 www 557
            'chat/heart-beat',
558
            'chat/create-group',
559
            'chat/add-user-to-group',
560
            'chat/mark-seen',
561
            'chat/mark-received',
562
            'chat/remove-user-from-group',
563
            'chat/get-all-messages',
564
            'chat/send',
565
            'chat/get-contacts-availables-for-group',
566
            'chat/get-contact-group-list',
567
            'chat/leave-group',
568
            'chat/delete-group',
569
            'chat/close',
570
            'chat/clear',
3121 efrain 571
            'chat/open',
1 www 572
            'chat/upload',
4113 efrain 573
            'chat/zoom',
5343 efrain 574
            'chat/open-or-create',
4131 efrain 575
 
1 www 576
            'help',
577
            'helpers',
578
            'helpers/search-people',
579
            'helpers/posts',
580
            'helpers/people-you-may-know',
581
            'helpers/people-viewed-profile',
582
            'helpers/company-follower',
583
            'helpers/company-suggestion',
584
            'helpers/group-members',
585
            'helpers/group-members/invite',
586
            'helpers/group-members/cancel',
587
            'helpers/group-members/reject',
588
            'helpers/group-members/approve',
589
            'helpers/groups-suggestion',
3298 efrain 590
            'helpers/my-groups',
2444 efrain 591
            'helpers/footer',
4179 efrain 592
            'helpers/next-events',
1 www 593
            'marketplace',
594
            'marketplace/categories',
595
            'marketplace/enroll',
5223 efrain 596
            'marketplace/claim',
1 www 597
            'marketplace/join',
598
            'marketplace/buy',
4113 efrain 599
 
600
            'calendar',
601
            'calendar/events',
4131 efrain 602
 
603
 
4419 efrain 604
            //'zoom',
605
            //'zoom/add',
606
            // 'zoom/delete',
607
            // 'zoom/listing',
1 www 608
        ],
609
        UserType::USER => [
610
            'home',
611
            'onroom',
3298 efrain 612
            'share',
4778 efrain 613
            'share/increment-external-counter',
1 www 614
            'signin',
615
            'signin/facebook',
616
            'signin/twitter',
617
            'signin/google',
3639 efrain 618
            'signin/impersonate',
1 www 619
            'signout',
620
            'signup',
210 efrain 621
            'csrf',
1 www 622
            'check-session',
3775 efrain 623
            'shorter',
624
            'shorter/generate',
1 www 625
            'notifications',
3262 efrain 626
            'notifications/mark-read',
627
            'notifications/mark-all-read',
628
            'notifications/delete',
629
            'notifications/clear',
630
            'notifications/unreads',
1 www 631
            'professionalism-policy',
632
            'reset-password',
633
            'forgot-password',
634
            'activate-account',
635
            'privacy-policy',
636
            'terms-and-conditions',
637
            'cookies',
638
            'backend',
639
            'backend/signin-company',
640
            'oauth',
641
            'oauth/facebook',
642
            'oauth/facebook/cancel',
643
            'oauth/facebook/delete',
644
            'oauth/twitter',
645
            'oauth/google',
646
            'oauth/instagram',
647
            'paypal',
648
            'paypal/success',
649
            'paypal/cancel',
650
            'services',
651
            'services/device',
652
            'services/check-session',
653
            'services/fcm',
654
            'services/signin',
1323 efrain 655
            'services/signout',
1 www 656
            'services/sync',
657
            'services/sync-batch',
658
            'services/storage',
659
            'services/microlearning',
660
            'services/microlearning/refresh',
661
            'services/microlearning/check-changes',
280 efrain 662
            'services/microlearning/capsules',
663
            'services/microlearning/capsules/comments',
664
            'services/microlearning/capsules/comments/add',
665
            'services/microlearning/capsules/comments/delete',
1979 efrain 666
            'services/delete-account',
1 www 667
            'storage',
3639 efrain 668
            'storage-network',
1 www 669
            'dashboard',
670
            'post',
4808 efrain 671
            'post/comments',
672
            'post/comments/add',
673
            'post/comments/delete',
674
            'post/like',
675
            'post/unlike',
1 www 676
            'feed',
677
            'feed/timeline',
678
            'feed/add',
679
            'feed/delete',
680
            'feed/share',
681
            'feed/comment',
682
            'feed/comment/delete',
683
            'feed/like',
684
            'feed/unlike',
685
            'connection',
686
            'connection/my-connections',
687
            'connection/people-you-may-know',
688
            'connection/people-blocked',
689
            'connection/people-blocked/delete',
690
            'connection/invitations-sent',
691
            'connection/invitations-received',
692
            'connection/request',
693
            'connection/approve',
694
            'connection/reject',
695
            'connection/block',
696
            'connection/cancel',
697
            'connection/delete',
698
            'connection/unblock',
699
            'account-settings',
700
            'account-settings/image',
701
            'account-settings/deactivate',
702
            'account-settings/notifications',
703
            'account-settings/password',
704
            'account-settings/social-networks',
705
            'account-settings/location',
706
            'account-settings/privacy',
707
            'account-settings/basic',
708
            'account-settings/browsers',
709
            'account-settings/ips',
710
            'account-settings/devices',
711
            'account-settings/transactions',
712
            'account-settings/transactions/add-funds',
713
            'account-settings/add-facebook',
714
            'account-settings/remove-facebook',
715
            'account-settings/add-twitter',
716
            'account-settings/remove-twitter',
717
            'account-settings/add-google',
718
            'account-settings/remove-google',
1979 efrain 719
            'account-settings/delete-account',
1 www 720
            'search',
721
            'search/group',
722
            'search/job',
723
            'search/user',
724
            'moodle',
725
            'profile',
726
            'profile/self-evaluation',
727
            'profile/self-evaluation/take-a-test',
279 efrain 728
            'profile/self-evaluation/report',
554 geraldo 729
            'profile/performance-evaluation',
730
            'profile/performance-evaluation/take-a-test',
731
            'profile/performance-evaluation/report',
1 www 732
            'profile/microlearning',
733
            'profile/microlearning/timeline',
734
            'profile/microlearning/progress',
735
            'profile/view',
736
            'profile/people-viewed-profile',
737
            'profile/my-profiles',
738
            'profile/my-profiles/extended',
739
            'profile/my-profiles/cover',
740
            'profile/my-profiles/image',
741
            'profile/my-profiles/experience',
742
            'profile/my-profiles/education',
743
            'profile/my-profiles/language',
744
            'profile/my-profiles/location',
745
            'profile/my-profiles/skill',
746
            'profile/my-profiles/social-network',
3912 efrain 747
            'profile/my-profiles/aptitude',
748
            'profile/my-profiles/hobby-and-interest',
1 www 749
            'profile/my-profiles/add',
750
            'profile/my-profiles/edit',
751
            'profile/my-profiles/delete',
752
            'group',
753
            'group/view',
754
            'group/request',
755
            'group/leave',
756
            'group/cancel',
1360 efrain 757
            'group/accept',
758
            'group/reject',
1 www 759
            'group/my-groups',
760
            'group/my-groups/accessibility',
761
            'group/my-groups/industry',
762
            'group/my-groups/extended',
763
            'group/my-groups/type',
764
            'group/my-groups/users',
765
            'group/my-groups/image',
766
            'group/my-groups/cover',
767
            'group/my-groups/website',
768
            'group/my-groups/privacy',
769
            'group/my-groups/add',
770
            'group/my-groups/edit',
771
            'group/my-groups/delete',
772
            'group/my-groups/status',
773
            'group/joined-groups',
774
            'group/requests-sent',
775
            'group/invitations-received',
776
            'group/members',
777
            'group/members/approve',
778
            'group/members/reject',
779
            'group/members/invite',
780
            'group/members/cancel',
781
            'job',
782
            'job/view',
783
            'job/applied-jobs',
784
            'job/apply-job',
785
            'job/remove-apply-job',
786
            'job/saved-jobs',
787
            'job/save-job',
788
            'job/remove-save-job',
789
            'inmail',
790
            'inmail/block',
791
            'inmail/delete',
792
            'inmail/message',
793
            'inmail/message/send',
794
            'inmail/message/delete',
795
            'chat',
4857 efrain 796
            'chat/users',
1 www 797
            'chat/heart-beat',
798
            'chat/create-group',
799
            'chat/add-user-to-group',
800
            'chat/mark-seen',
801
            'chat/mark-received',
802
            'chat/remove-user-from-group',
803
            'chat/get-all-messages',
804
            'chat/send',
805
            'chat/get-contacts-availables-for-group',
806
            'chat/get-contact-group-list',
807
            'chat/leave-group',
808
            'chat/delete-group',
809
            'chat/close',
810
            'chat/clear',
3121 efrain 811
            'chat/open',
1 www 812
            'chat/upload',
4113 efrain 813
            'chat/zoom',
5343 efrain 814
            'chat/open-or-create',
815
 
1 www 816
            'help',
817
            'helpers',
818
            'helpers/search-people',
819
            'helpers/posts',
820
            'helpers/people-you-may-know',
821
            'helpers/people-viewed-profile',
822
            'helpers/company-follower',
823
            'helpers/company-suggestion',
824
            'helpers/group-members',
825
            'helpers/group-members/invite',
826
            'helpers/group-members/cancel',
827
            'helpers/group-members/reject',
828
            'helpers/group-members/approve',
829
            'helpers/groups-suggestion',
3298 efrain 830
            'helpers/my-groups',
2444 efrain 831
            'helpers/footer',
4179 efrain 832
            'helpers/next-events',
1 www 833
            'marketplace',
834
            'marketplace/categories',
835
            'marketplace/enroll',
5223 efrain 836
            'marketplace/claim',
1 www 837
            'marketplace/join',
838
            'marketplace/buy',
4113 efrain 839
 
840
            'calendar',
841
            'calendar/events',
4131 efrain 842
 
4419 efrain 843
            // 'zoom',
844
            // 'zoom/add',
845
            //  'zoom/delete',
846
            //  'zoom/listing',
1 www 847
        ],
848
        UserType::GUEST => [
849
            'home',
850
            'onroom',
3349 efrain 851
            'share',
1 www 852
            'signin',
853
            'signin/facebook',
854
            'signin/twitter',
855
            'signin/google',
3639 efrain 856
            'signin/impersonate',
1 www 857
            'signout',
858
            'signup',
859
            'check-session',
3775 efrain 860
            'shorter',
1 www 861
            'notifications',
3262 efrain 862
            'notifications/mark-read',
863
            'notifications/mark-all-read',
864
            'notifications/delete',
865
            'notifications/clear',
866
            'notifications/unreads',
1 www 867
            'professionalism-policy',
868
            'reset-password',
869
            'forgot-password',
870
            'activate-account',
871
            'privacy-policy',
872
            'terms-and-conditions',
873
            'cookies',
2581 efrain 874
            'csrf',
1 www 875
            'oauth',
876
            'oauth/facebook',
877
            'oauth/facebook/cancel',
878
            'oauth/facebook/delete',
879
            'oauth/twitter',
880
            'oauth/google',
881
            'oauth/instagram',
882
            'paypal',
883
            'paypal/success',
884
            'paypal/cancel',
3639 efrain 885
            'storage-network',
1 www 886
            'services',
887
            'services/device',
888
            'services/check-session',
889
            'services/fcm',
890
            'services/signin',
891
            'services/signout',
892
            'services/sync',
893
            'services/sync-batch',
4419 efrain 894
 
895
            // 'zoom',
896
            // 'zoom/add',
897
            // 'zoom/delete',
898
            // 'zoom/listing',
1 www 899
        ],
1979 efrain 900
        UserType::USER_DELETED => [
901
            'home',
902
            'signin',
903
            'signin/facebook',
904
            'signin/twitter',
905
            'signin/google',
906
            'signout',
907
            'signup',
908
            'check-session',
909
            'notifications',
3262 efrain 910
            'notifications/mark-read',
911
            'notifications/mark-all-read',
912
            'notifications/delete',
913
            'notifications/clear',
914
            'notifications/unreads',
1979 efrain 915
            'professionalism-policy',
916
            'reset-password',
917
            'forgot-password',
918
            'activate-account',
919
            'privacy-policy',
920
            'terms-and-conditions',
921
            'cookies',
922
            'oauth',
2581 efrain 923
            'csrf',
3775 efrain 924
            'shorter',
1979 efrain 925
            'oauth/facebook',
926
            'oauth/facebook/cancel',
927
            'oauth/facebook/delete',
928
            'oauth/twitter',
929
            'oauth/google',
930
            'oauth/instagram',
2002 efrain 931
            'services',
932
            'services/device',
933
            'services/check-session',
934
            'services/fcm',
935
            'services/signin',
936
            'services/signout',
937
            'services/sync',
938
            'services/sync-batch',
1979 efrain 939
        ],
1 www 940
    ];
941
}
4842 efrain 942
 
943
function getAclMenuDefaultNetworkConnectionUser2User()
944
{
945
    return [
946
        [
947
            'label' => 'LABEL_HOME',
948
            'route' => 'dashboard',
949
            'class' => '/images/navbar/home.svg',
950
        ],
951
        [
952
            'label' => 'LABEL_PROFILE',
953
            'route' => 'profile',
954
            'class' => '/images/navbar/perfil.svg',
955
            'pages' => [
956
                [
957
                    'label' => 'LABEL_CONNECTIONS',
958
                    'route' => 'connection',
959
                    //'class' =>'/images/navbar/conexion.svg',
960
                    'pages' => [
961
                        [
962
                            'label' => 'LABEL_MY_CONNECTIONS',
963
                            'route' => 'connection/my-connections'
964
                        ],
965
                        [
966
                            'label' => 'LABEL_INVITATIONS_SENT',
967
                            'route' => 'connection/invitations-sent'
968
                        ],
969
                        [
970
                            'label' => 'LABEL_INVITATIONS_RECEIVED',
971
                            'route' => 'connection/invitations-received'
972
                        ],
973
                        [
974
                            'label' => 'LABEL_PEOPLE_YOU_MAY_KNOW',
975
                            'route' => 'connection/people-you-may-know'
976
                        ],
977
                        [
978
                            'label' => 'LABEL_PEOPLE_BLOCKED',
979
                            'route' => 'connection/people-blocked'
980
                        ],
981
 
982
 
983
                    ]
984
                ],
985
                [
986
                    'label' => 'LABEL_MY_PROFILES',
987
                    'route' => 'profile/my-profiles'
988
                ],
989
                [
990
                    'label' => 'LABEL_JOBS_APPLIED',
991
                    'route' => 'job/applied-jobs'
992
                ],
993
                [
994
                    'label' => 'LABEL_JOBS_SAVED',
995
                    'route' => 'job/saved-jobs'
996
                ],
997
                [
998
                    'label' => 'LABEL_WHO_HAS_SEEN_MY_PROFILE',
999
                    'route' => 'profile/people-viewed-profile'
1000
                ],
1001
 
1002
            ]
1003
        ],
1004
 
1005
 
1006
        [
1007
            'label' => 'LABEL_COMPANIES',
1008
            'route' => 'company',
1009
            'class' => '/images/navbar/empresa.svg',
1010
            'pages' => [
1011
                [
1012
                    'label' => 'LABEL_MY_COMPANIES',
1013
                    'route' => 'company/my-companies'
1014
                ],
1015
                [
1016
                    'label' => 'LABEL_COMPANIES_I_FOLLOW',
1017
                    'route' => 'company/following-companies'
1018
                ],
1019
                [
1020
                    'label' => 'LABEL_COMPANIES_I_WORK_WITH',
1021
                    'route' => 'company/i-work-with'
1022
                ],
1023
                [
1024
                    'label' => 'LABEL_REQUESTS_SENT',
1025
                    'route' => 'company/requests-sent'
1026
                ],
1027
                [
1028
                    'label' => 'LABEL_INVITATIONS_RECEIVED',
1029
                    'route' => 'company/invitations-received'
1030
                ]
1031
            ]
1032
        ],
1033
 
1034
        [
1035
            'label' => 'LABEL_GROUPS',
1036
            'route' => 'group',
1037
            'class' => '/images/navbar/grupos.svg',
1038
            'pages' => [
1039
                [
1040
                    'label' => 'LABEL_MY_GROUPS',
1041
                    'route' => 'group/my-groups'
1042
                ],
1043
                [
1044
                    'label' => 'LABEL_JOINED_GROUPS',
1045
                    'route' => 'group/joined-groups'
1046
                ],
1047
                [
1048
                    'label' => 'LABEL_REQUESTS_SENT',
1049
                    'route' => 'group/requests-sent'
1050
                ],
1051
                [
1052
                    'label' => 'LABEL_INVITATIONS_RECEIVED',
1053
                    'route' => 'group/invitations-received'
1054
                ]
1055
            ]
1056
        ],
1057
        [
1058
            'label' => 'LABEL_MARKETPLACE',
1059
            'route' => 'marketplace',
1060
            'class' => '/images/navbar/market-place.svg',
1061
        ],
1062
        [
1063
            'label' => 'LABEL_CALENDAR',
1064
            'route' => 'calendar',
1065
            'class' => '/images/navbar/calendar.svg',
1066
        ],
1067
 
1068
 
1069
 
1070
 
1071
 
1072
 
1073
 
1074
 
1075
        /* [
1076
         'label' => 'LABEL_MESSAGES',
1077
         'route' => 'inmail',
1078
         'class' => 'fa fa-envelope',
1079
         ],
1080
         [
1081
         'label' => 'LABEL_NOTIFICATIONS',
1082
         'route' => 'dashboard',
1083
         'class' => 'fa fa-bolt',
1084
         ], */
1085
    ];
1086
}
1087
 
1088
function getAclMenuDefaultNetworkConnectionAll2All()
1089
{
1090
    return [
1091
        [
1092
            'label' => 'LABEL_HOME',
1093
            'route' => 'dashboard',
1094
            'class' => '/images/navbar/home.svg',
1095
        ],
1096
        [
1097
            'label' => 'LABEL_PROFILE',
1098
            'route' => 'profile',
1099
            'class' => '/images/navbar/perfil.svg',
1100
            'pages' => [
1101
                [
1102
                    'label' => 'LABEL_MY_CONNECTIONS',
1103
                    'route' =>'connection/my-connections',
1104
                ],
1105
                [
1106
                    'label' => 'LABEL_MY_PROFILES',
1107
                    'route' => 'profile/my-profiles'
1108
                ],
1109
                [
1110
                    'label' => 'LABEL_JOBS_APPLIED',
1111
                    'route' => 'job/applied-jobs'
1112
                ],
1113
                [
1114
                    'label' => 'LABEL_JOBS_SAVED',
1115
                    'route' => 'job/saved-jobs'
1116
                ],
1117
                [
1118
                    'label' => 'LABEL_WHO_HAS_SEEN_MY_PROFILE',
1119
                    'route' => 'profile/people-viewed-profile'
1120
                ],
1121
 
1122
            ]
1123
        ],
1124
 
1125
 
1126
        [
1127
            'label' => 'LABEL_COMPANIES',
1128
            'route' => 'company',
1129
            'class' => '/images/navbar/empresa.svg',
1130
            'pages' => [
1131
                [
1132
                    'label' => 'LABEL_MY_COMPANIES',
1133
                    'route' => 'company/my-companies'
1134
                ],
1135
                [
1136
                    'label' => 'LABEL_COMPANIES_I_FOLLOW',
1137
                    'route' => 'company/following-companies'
1138
                ],
1139
                [
1140
                    'label' => 'LABEL_COMPANIES_I_WORK_WITH',
1141
                    'route' => 'company/i-work-with'
1142
                ],
1143
                [
1144
                    'label' => 'LABEL_REQUESTS_SENT',
1145
                    'route' => 'company/requests-sent'
1146
                ],
1147
                [
1148
                    'label' => 'LABEL_INVITATIONS_RECEIVED',
1149
                    'route' => 'company/invitations-received'
1150
                ]
1151
            ]
1152
        ],
1153
 
1154
        [
1155
            'label' => 'LABEL_GROUPS',
1156
            'route' => 'group',
1157
            'class' => '/images/navbar/grupos.svg',
1158
            'pages' => [
1159
                [
1160
                    'label' => 'LABEL_MY_GROUPS',
1161
                    'route' => 'group/my-groups'
1162
                ],
1163
                [
1164
                    'label' => 'LABEL_JOINED_GROUPS',
1165
                    'route' => 'group/joined-groups'
1166
                ],
1167
                [
1168
                    'label' => 'LABEL_REQUESTS_SENT',
1169
                    'route' => 'group/requests-sent'
1170
                ],
1171
                [
1172
                    'label' => 'LABEL_INVITATIONS_RECEIVED',
1173
                    'route' => 'group/invitations-received'
1174
                ]
1175
            ]
1176
        ],
1177
        [
1178
            'label' => 'LABEL_MARKETPLACE',
1179
            'route' => 'marketplace',
1180
            'class' => '/images/navbar/market-place.svg',
1181
        ],
1182
        [
1183
            'label' => 'LABEL_CALENDAR',
1184
            'route' => 'calendar',
1185
            'class' => '/images/navbar/calendar.svg',
1186
        ],
1187
 
1188
 
1189
 
1190
 
1191
 
1192
 
1193
 
1194
 
1195
        /* [
1196
         'label' => 'LABEL_MESSAGES',
1197
         'route' => 'inmail',
1198
         'class' => 'fa fa-envelope',
1199
         ],
1200
         [
1201
         'label' => 'LABEL_NOTIFICATIONS',
1202
         'route' => 'dashboard',
1203
         'class' => 'fa fa-bolt',
1204
         ], */
1205
    ];
1206
}
1207
 
1208
function getAclMenuNonDefaulNetworkConnectionUser2User()
1209
{
1210
    return [
1211
        [
1212
            'label' => 'LABEL_HOME',
1213
            'route' => 'dashboard',
1214
            'class' => '/images/navbar/home.svg',
1215
        ],
1216
        [
1217
            'label' => 'LABEL_PROFILE',
1218
            'route' => 'profile',
1219
            'class' => '/images/navbar/perfil.svg',
1220
            'pages' => [
1221
                [
1222
                    'label' => 'LABEL_CONNECTIONS',
1223
                    'route' => 'connection',
1224
                    //'class' =>'/images/navbar/conexion.svg',
1225
                    'pages' => [
1226
                        [
1227
                            'label' => 'LABEL_MY_CONNECTIONS',
1228
                            'route' => 'connection/my-connections'
1229
                        ],
1230
                        [
1231
                            'label' => 'LABEL_INVITATIONS_SENT',
1232
                            'route' => 'connection/invitations-sent'
1233
                        ],
1234
                        [
1235
                            'label' => 'LABEL_INVITATIONS_RECEIVED',
1236
                            'route' => 'connection/invitations-received'
1237
                        ],
1238
                        [
1239
                            'label' => 'LABEL_PEOPLE_YOU_MAY_KNOW',
1240
                            'route' => 'connection/people-you-may-know'
1241
                        ],
1242
                        [
1243
                            'label' => 'LABEL_PEOPLE_BLOCKED',
1244
                            'route' => 'connection/people-blocked'
1245
                        ],
1246
 
1247
 
1248
                    ]
1249
                ],
1250
                [
1251
                    'label' => 'LABEL_MY_PROFILES',
1252
                    'route' => 'profile/my-profiles'
1253
                ],
1254
                [
1255
                    'label' => 'LABEL_WHO_HAS_SEEN_MY_PROFILE',
1256
                    'route' => 'profile/people-viewed-profile'
1257
                ],
1258
 
1259
            ]
1260
        ],
1261
 
1262
        [
1263
            'label' => 'LABEL_COMPANY',
1264
            'route' => 'company',
1265
            'class' => '/images/navbar/empresa.svg',
1266
 
1267
        ],
1268
 
1269
        [
1270
            'label' => 'LABEL_GROUPS',
1271
            'route' => 'group',
1272
            'class' => '/images/navbar/grupos.svg',
1273
            'pages' => [
1274
                [
1275
                    'label' => 'LABEL_MY_GROUPS',
1276
                    'route' => 'group/my-groups'
1277
                ],
1278
                [
1279
                    'label' => 'LABEL_JOINED_GROUPS',
1280
                    'route' => 'group/joined-groups'
1281
                ],
1282
                [
1283
                    'label' => 'LABEL_REQUESTS_SENT',
1284
                    'route' => 'group/requests-sent'
1285
                ],
1286
                [
1287
                    'label' => 'LABEL_INVITATIONS_RECEIVED',
1288
                    'route' => 'group/invitations-received'
1289
                ]
1290
            ]
1291
        ],
1292
        [
1293
            'label' => 'LABEL_MARKETPLACE',
1294
            'route' => 'marketplace',
1295
            'class' => '/images/navbar/market-place.svg',
1296
        ],
1297
        [
1298
            'label' => 'LABEL_CALENDAR',
1299
            'route' => 'calendar',
1300
            'class' => '/images/navbar/calendar.svg',
1301
        ],
1302
 
1303
 
1304
 
1305
 
1306
 
1307
 
1308
 
1309
 
1310
        /* [
1311
         'label' => 'LABEL_MESSAGES',
1312
         'route' => 'inmail',
1313
         'class' => 'fa fa-envelope',
1314
         ],
1315
         [
1316
         'label' => 'LABEL_NOTIFICATIONS',
1317
         'route' => 'dashboard',
1318
         'class' => 'fa fa-bolt',
1319
         ], */
1320
    ];
1321
}
1322
 
1323
function getAclMenuNonDefaultNetworkConnectionAll2All()
1324
{
1325
    return [
1326
        [
1327
            'label' => 'LABEL_HOME',
1328
            'route' => 'dashboard',
1329
            'class' => '/images/navbar/home.svg',
1330
        ],
1331
        [
1332
            'label' => 'LABEL_PROFILE',
1333
            'route' => 'profile',
1334
            'class' => '/images/navbar/perfil.svg',
1335
            'pages' => [
1336
                [
1337
                    'label' => 'LABEL_MY_CONNECTIONS',
1338
                    'route' => 'connection/my-connections'
1339
                ],
1340
                [
1341
                    'label' => 'LABEL_MY_PROFILES',
1342
                    'route' => 'profile/my-profiles'
1343
                ],
1344
                [
1345
                    'label' => 'LABEL_WHO_HAS_SEEN_MY_PROFILE',
1346
                    'route' => 'profile/people-viewed-profile'
1347
                ],
1348
 
1349
            ]
1350
        ],
1351
 
1352
        [
1353
            'label' => 'LABEL_COMPANY',
1354
            'route' => 'company',
1355
            'class' => '/images/navbar/empresa.svg',
1356
 
1357
        ],
1358
 
1359
 
1360
        [
1361
            'label' => 'LABEL_GROUPS',
1362
            'route' => 'group',
1363
            'class' => '/images/navbar/grupos.svg',
1364
            'pages' => [
1365
                [
1366
                    'label' => 'LABEL_MY_GROUPS',
1367
                    'route' => 'group/my-groups'
1368
                ],
1369
                [
1370
                    'label' => 'LABEL_JOINED_GROUPS',
1371
                    'route' => 'group/joined-groups'
1372
                ],
1373
                [
1374
                    'label' => 'LABEL_REQUESTS_SENT',
1375
                    'route' => 'group/requests-sent'
1376
                ],
1377
                [
1378
                    'label' => 'LABEL_INVITATIONS_RECEIVED',
1379
                    'route' => 'group/invitations-received'
1380
                ]
1381
            ]
1382
        ],
1383
        [
1384
            'label' => 'LABEL_MARKETPLACE',
1385
            'route' => 'marketplace',
1386
            'class' => '/images/navbar/market-place.svg',
1387
        ],
1388
        [
1389
            'label' => 'LABEL_CALENDAR',
1390
            'route' => 'calendar',
1391
            'class' => '/images/navbar/calendar.svg',
1392
        ],
1393
 
1394
 
1395
 
1396
 
1397
 
1398
 
1399
 
1400
 
1401
        /* [
1402
         'label' => 'LABEL_MESSAGES',
1403
         'route' => 'inmail',
1404
         'class' => 'fa fa-envelope',
1405
         ],
1406
         [
1407
         'label' => 'LABEL_NOTIFICATIONS',
1408
         'route' => 'dashboard',
1409
         'class' => 'fa fa-bolt',
1410
         ], */
1411
    ];
1412
}