Proyectos de Subversion LeadersLinked - Services

Rev

Rev 567 | Rev 569 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 567 Rev 568
Línea 11... Línea 11...
11
    'navigation' => [
11
    'navigation' => [
12
        'menu' => [],
12
        'menu' => [],
13
        'footer' => [
13
        'footer' => [
14
            [
14
            [
15
                'label' => 'LABEL_PRIVACY_POLICY',
15
                'label' => 'LABEL_PRIVACY_POLICY',
16
                'route' => 'privacy-policy'
16
                'route' => 'privacy-policy',
17
            ],
17
            ],
18
            [
18
            [
19
                'label' => 'LABEL_PROFESSIONALISM_POLICY',
19
                'label' => 'LABEL_PROFESSIONALISM_POLICY',
20
                'route' => 'professionalism-policy'
20
                'route' => 'professionalism-policy',
21
            ],
21
            ],
22
            [
22
            [
23
                'label' => 'LABEL_COOKIES_POLICY',
23
                'label' => 'LABEL_COOKIES_POLICY',
24
                'route' => 'cookies'
24
                'route' => 'cookies',
25
            ],
25
            ],
26
            [
26
            [
27
                'label' => 'LABEL_TERMS_AND_CONDITIONS',
27
                'label' => 'LABEL_TERMS_AND_CONDITIONS',
28
                'route' => 'terms-and-conditions'
28
                'route' => 'terms-and-conditions',
29
            ]
29
            ],
30
        ]
30
        ],
31
    ],
31
    ],
32
    'router' => [
32
    'router' => [
33
        'routes' => [
33
        'routes' => [
34
            'signin' => [
34
            'signin' => [
35
                'type' => Literal::class,
35
                'type' => Literal::class,
36
                'options' => [
36
                'options' => [
37
                    'route' => '/signin',
37
                    'route' => '/signin',
38
                    'defaults' => [
38
                    'defaults' => [
39
                        'controller' => '\LeadersLinked\Controller\AuthController',
39
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
40
                        'action' => 'signin'
40
                        'action' => 'signin',
41
                    ]
41
                    ],
42
                ],
42
                ],
43
                'may_terminate' => true,
43
                'may_terminate' => true,
44
                'child_routes' => [
44
                'child_routes' => [
45
 
-
 
46
                    'facebook' => [
45
                    'facebook' => [
47
                        'type' => Literal::class,
46
                        'type' => Literal::class,
48
                        'options' => [
47
                        'options' => [
49
                            'route' => '/facebook',
48
                            'route' => '/facebook',
50
                            'defaults' => [
49
                            'defaults' => [
51
                                'controller' => '\LeadersLinked\Controller\AuthController',
50
                                'controller' => '\\LeadersLinked\\Controller\\AuthController',
52
                                'action' => 'facebook'
51
                                'action' => 'facebook',
53
                            ]
52
                            ],
54
                        ]
53
                        ],
55
                    ],
54
                    ],
56
                    'twitter' => [
55
                    'twitter' => [
57
                        'type' => Literal::class,
56
                        'type' => Literal::class,
58
                        'options' => [
57
                        'options' => [
59
                            'route' => '/twitter',
58
                            'route' => '/twitter',
60
                            'defaults' => [
59
                            'defaults' => [
61
                                'controller' => '\LeadersLinked\Controller\AuthController',
60
                                'controller' => '\\LeadersLinked\\Controller\\AuthController',
62
                                'action' => 'twitter'
61
                                'action' => 'twitter',
63
                            ]
62
                            ],
64
                        ]
63
                        ],
65
                    ],
64
                    ],
66
                    'google' => [
65
                    'google' => [
67
                        'type' => Literal::class,
66
                        'type' => Literal::class,
68
                        'options' => [
67
                        'options' => [
69
                            'route' => '/google',
68
                            'route' => '/google',
70
                            'defaults' => [
69
                            'defaults' => [
71
                                'controller' => '\LeadersLinked\Controller\AuthController',
70
                                'controller' => '\\LeadersLinked\\Controller\\AuthController',
72
                                'action' => 'google'
71
                                'action' => 'google',
73
                            ]
72
                            ],
74
                        ]
73
                        ],
75
                    ],
74
                    ],
76
                    'impersonate' => [
75
                    'impersonate' => [
77
                        'type' => Literal::class,
76
                        'type' => Literal::class,
78
                        'options' => [
77
                        'options' => [
79
                            'route' => '/impersonate',
78
                            'route' => '/impersonate',
80
                            'defaults' => [
79
                            'defaults' => [
81
                                'controller' => '\LeadersLinked\Controller\AuthController',
80
                                'controller' => '\\LeadersLinked\\Controller\\AuthController',
82
                                'action' => 'impersonate'
81
                                'action' => 'impersonate',
83
                            ]
82
                            ],
84
                        ]
83
                        ],
85
                    ],
84
                    ],
86
                    'debug' => [
85
                    'debug' => [
87
                        'type' => Literal::class,
86
                        'type' => Literal::class,
88
                        'options' => [
87
                        'options' => [
89
                            'route' => '/debug',
88
                            'route' => '/debug',
90
                            'defaults' => [
89
                            'defaults' => [
91
                                'controller' => '\LeadersLinked\Controller\AuthController',
90
                                'controller' => '\\LeadersLinked\\Controller\\AuthController',
92
                                'action' => 'debug'
91
                                'action' => 'debug',
93
                            ]
92
                            ],
94
                        ]
93
                        ],
95
                    ]
94
                    ],
96
                ]
95
                ],
97
            ],
96
            ],
98
 
-
 
99
            'crypto' => [
97
            'crypto' => [
100
                'type' => Segment::class,
98
                'type' => Segment::class,
101
                'options' => [
99
                'options' => [
102
                    'route' => '/crypto',
100
                    'route' => '/crypto',
103
                    'defaults' => [
101
                    'defaults' => [
104
                        'controller' => '\LeadersLinked\Controller\HomeController',
102
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
105
                        'action' => 'crypto'
103
                        'action' => 'crypto',
106
                    ]
104
                    ],
107
                ],
105
                ],
108
                'may_terminate' => true
106
                'may_terminate' => true,
109
            ],
107
            ],
110
 
-
 
111
            'storage' => [
108
            'storage' => [
112
                'type' => Segment::class,
109
                'type' => Segment::class,
113
                'options' => [
110
                'options' => [
114
                    'route' => '/storage/:code',
111
                    'route' => '/storage/:code',
115
                    'constraints' => [
112
                    'constraints' => [
116
                        'code' => '[A-Za-z0-9]+'
113
                        'code' => '[A-Za-z0-9]+',
117
                    ],
114
                    ],
118
                    'defaults' => [
115
                    'defaults' => [
119
                        'controller' => '\LeadersLinked\Controller\HomeController',
116
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
120
                        'action' => 'storage'
117
                        'action' => 'storage',
121
                    ]
118
                    ],
122
                ],
119
                ],
123
                'may_terminate' => true
120
                'may_terminate' => true,
124
            ],
121
            ],
125
 
-
 
126
            'share' => [
122
            'share' => [
127
                'type' => Segment::class,
123
                'type' => Segment::class,
128
                'options' => [
124
                'options' => [
129
                    'route' => '/share/type/:type/code/:code/user/:user/timestamp/:timestamp/rand/:rand/password/:password',
125
                    'route' => '/share/type/:type/code/:code/user/:user/timestamp/:timestamp/rand/:rand/password/:password',
130
                    'constraints' => [
126
                    'constraints' => [
131
                        'type' => 'feed|post',
127
                        'type' => 'feed|post',
132
                        'code' => '[A-Za-z0-9\-]+\=*',
128
                        'code' => '[A-Za-z0-9\\-]+\\=*',
133
                        'user' => '[A-Za-z0-9\-]+\=*',
129
                        'user' => '[A-Za-z0-9\\-]+\\=*',
134
                        'timestamp' => '[0-9]*',
130
                        'timestamp' => '[0-9]*',
135
                        'rand' => '[0-9]*',
131
                        'rand' => '[0-9]*',
136
                        'password' => '[A-Za-z0-9]*'
132
                        'password' => '[A-Za-z0-9]*',
137
                    ],
133
                    ],
138
                    'defaults' => [
134
                    'defaults' => [
139
                        'controller' => '\LeadersLinked\Controller\HomeController',
135
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
140
                        'action' => 'share'
136
                        'action' => 'share',
141
                    ]
137
                    ],
142
                ],
138
                ],
143
                'may_terminate' => true,
139
                'may_terminate' => true,
144
                'child_routes' => [
140
                'child_routes' => [
145
                    'increment-external-counter' => [
141
                    'increment-external-counter' => [
146
                        'type' => Segment::class,
142
                        'type' => Segment::class,
147
                        'options' => [
143
                        'options' => [
148
                            'route' => '/increment-external-counter',
144
                            'route' => '/increment-external-counter',
149
                            'defaults' => [
145
                            'defaults' => [
150
                                'controller' => '\LeadersLinked\Controller\HomeController',
146
                                'controller' => '\\LeadersLinked\\Controller\\HomeController',
151
                                'action' => 'incTotalExternalShared'
147
                                'action' => 'incTotalExternalShared',
152
                            ]
148
                            ],
153
                        ]
149
                        ],
154
                    ]
150
                    ],
155
                ]
151
                ],
156
            ],
152
            ],
157
 
-
 
158
            'shorter' => [
153
            'shorter' => [
159
                'type' => Segment::class,
154
                'type' => Segment::class,
160
                'options' => [
155
                'options' => [
161
                    'route' => '/shorter/:code',
156
                    'route' => '/shorter/:code',
162
                    'constraints' => [
157
                    'constraints' => [
163
                        'code' => '[A-Za-z0-9\-]+\=*'
158
                        'code' => '[A-Za-z0-9\\-]+\\=*',
164
                    ],
159
                    ],
165
                    'defaults' => [
160
                    'defaults' => [
166
                        'controller' => '\LeadersLinked\Controller\ShorterController',
161
                        'controller' => '\\LeadersLinked\\Controller\\ShorterController',
167
                        'action' => 'index'
162
                        'action' => 'index',
168
                    ]
163
                    ],
169
                ],
164
                ],
170
                'may_terminate' => true,
165
                'may_terminate' => true,
171
                'child_routes' => [
166
                'child_routes' => [
172
                    'generate' => [
167
                    'generate' => [
173
                        'type' => Segment::class,
168
                        'type' => Segment::class,
174
                        'options' => [
169
                        'options' => [
175
                            'route' => '/generate/:type',
170
                            'route' => '/generate/:type',
176
                            'constraints' => [
171
                            'constraints' => [
177
                                'type' => 'feed|post'
172
                                'type' => 'feed|post',
178
                            ],
173
                            ],
179
                            'defaults' => [
174
                            'defaults' => [
180
                                'controller' => '\LeadersLinked\Controller\ShorterController',
175
                                'controller' => '\\LeadersLinked\\Controller\\ShorterController',
181
                                'action' => 'generate'
176
                                'action' => 'generate',
182
                            ]
177
                            ],
183
                        ]
178
                        ],
184
                    ]
179
                    ],
185
                ]
180
                ],
186
            ],
181
            ],
187
 
-
 
188
            'reset-password' => [
182
            'reset-password' => [
189
                'type' => Segment::class,
183
                'type' => Segment::class,
190
                'options' => [
184
                'options' => [
191
                    'route' => '/reset-password/:code',
185
                    'route' => '/reset-password/:code',
192
                    'constraints' => [
186
                    'constraints' => [
193
                        'code' => '[a-zA-Z0-9--]+'
187
                        'code' => '[a-zA-Z0-9--]+',
194
                    ],
188
                    ],
195
                    'defaults' => [
189
                    'defaults' => [
196
                        'controller' => '\LeadersLinked\Controller\AuthController',
190
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
197
                        'action' => 'resetPassword'
191
                        'action' => 'resetPassword',
198
                    ]
192
                    ],
199
                ]
193
                ],
200
            ],
194
            ],
201
            'forgot-password' => [
195
            'forgot-password' => [
202
                'type' => Literal::class,
196
                'type' => Literal::class,
203
                'options' => [
197
                'options' => [
204
                    'route' => '/forgot-password',
198
                    'route' => '/forgot-password',
205
                    'defaults' => [
199
                    'defaults' => [
206
                        'controller' => '\LeadersLinked\Controller\AuthController',
200
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
207
                        'action' => 'forgotPassword'
201
                        'action' => 'forgotPassword',
208
                    ]
202
                    ],
209
                ]
203
                ],
210
            ],
204
            ],
211
            'signup' => [
205
            'signup' => [
212
                'type' => Literal::class,
206
                'type' => Literal::class,
213
                'options' => [
207
                'options' => [
214
                    'route' => '/signup',
208
                    'route' => '/signup',
215
                    'defaults' => [
209
                    'defaults' => [
216
                        'controller' => '\LeadersLinked\Controller\AuthController',
210
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
217
                        'action' => 'signup'
211
                        'action' => 'signup',
218
                    ]
212
                    ],
219
                ]
213
                ],
220
            ],
214
            ],
221
            'activate-account' => [
215
            'activate-account' => [
222
                'type' => Segment::class,
216
                'type' => Segment::class,
223
                'options' => [
217
                'options' => [
224
                    'route' => '/activate-account/:code',
218
                    'route' => '/activate-account/:code',
225
                    'constraints' => [
219
                    'constraints' => [
226
                        'code' => '[a-zA-Z0-9]+'
220
                        'code' => '[a-zA-Z0-9]+',
227
                    ],
221
                    ],
228
                    'defaults' => [
222
                    'defaults' => [
229
                        'controller' => '\LeadersLinked\Controller\AuthController',
223
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
230
                        'action' => 'activateAccount'
224
                        'action' => 'activateAccount',
231
                    ]
225
                    ],
232
                ]
226
                ],
233
            ],
227
            ],
234
            'signout' => [
228
            'signout' => [
235
                'type' => Literal::class,
229
                'type' => Literal::class,
236
                'options' => [
230
                'options' => [
237
                    'route' => '/signout',
231
                    'route' => '/signout',
238
                    'defaults' => [
232
                    'defaults' => [
239
                        'controller' => '\LeadersLinked\Controller\AuthController',
233
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
240
                        'action' => 'signout'
234
                        'action' => 'signout',
241
                    ]
235
                    ],
242
                ]
236
                ],
243
            ],
237
            ],
244
            'csrf' => [
238
            'csrf' => [
245
                'type' => Literal::class,
239
                'type' => Literal::class,
246
                'options' => [
240
                'options' => [
247
                    'route' => '/csrf',
241
                    'route' => '/csrf',
248
                    'defaults' => [
242
                    'defaults' => [
249
                        'controller' => '\LeadersLinked\Controller\AuthController',
243
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
250
                        'action' => 'csrf'
244
                        'action' => 'csrf',
251
                    ]
245
                    ],
252
                ]
246
                ],
253
            ],
247
            ],
254
 
-
 
255
            'onroom' => [
248
            'onroom' => [
256
                'type' => Literal::class,
249
                'type' => Literal::class,
257
                'options' => [
250
                'options' => [
258
                    'route' => '/onroom',
251
                    'route' => '/onroom',
259
                    'defaults' => [
252
                    'defaults' => [
260
                        'controller' => '\LeadersLinked\Controller\AuthController',
253
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
261
                        'action' => 'onroom'
254
                        'action' => 'onroom',
262
                    ]
255
                    ],
263
                ]
256
                ],
264
            ],
257
            ],
265
            'cesams' => [
258
            'cesams' => [
266
                'type' => Literal::class,
259
                'type' => Literal::class,
267
                'options' => [
260
                'options' => [
268
                    'route' => '/cesams',
261
                    'route' => '/cesams',
269
                    'defaults' => [
262
                    'defaults' => [
270
                        'controller' => '\LeadersLinked\Controller\AuthController',
263
                        'controller' => '\\LeadersLinked\\Controller\\AuthController',
271
                        'action' => 'cesams'
264
                        'action' => 'cesams',
272
                    ]
265
                    ],
273
                ]
266
                ],
274
            ],
267
            ],
275
            'home' => [
268
            'home' => [
276
                'type' => Literal::class,
269
                'type' => Literal::class,
277
                'options' => [
270
                'options' => [
278
                    'route' => '/',
271
                    'route' => '/',
279
                    'defaults' => [
272
                    'defaults' => [
280
                        'controller' => '\LeadersLinked\Controller\HomeController',
273
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
281
                        'action' => 'index'
274
                        'action' => 'index',
282
                    ]
275
                    ],
283
                ]
276
                ],
284
            ],
277
            ],
285
            'recruitment-ai' => [
278
            'recruitment-ai' => [
286
                'type' => Literal::class,
279
                'type' => Literal::class,
287
                'options' => [
280
                'options' => [
288
                    'route' => '/recruitment-ai',
281
                    'route' => '/recruitment-ai',
Línea 295... Línea 288...
295
                            'route' => '/pre-aplications/:id',
288
                            'route' => '/pre-aplications/:id',
296
                            'constraints' => [
289
                            'constraints' => [
297
                                'id' => '[0-9]+',
290
                                'id' => '[0-9]+',
298
                            ],
291
                            ],
299
                            'defaults' => [
292
                            'defaults' => [
300
                                'controller' => '\LeadersLinked\Controller\RecruitmentPreAplicationController',
293
                                'controller' => '\\LeadersLinked\\Controller\\RecruitmentPreAplicationController',
301
                                'action' => 'index'
294
                                'action' => 'index',
302
                            ]
295
                            ],
303
                        ],
296
                        ],
304
                    ],
297
                    ],
305
                    'job-description' => [
298
                    'job-description' => [
306
                        'type' => Segment::class,
299
                        'type' => Segment::class,
307
                        'options' => [
300
                        'options' => [
308
                            'route' => '/job-description/:id',
301
                            'route' => '/job-description/:id',
309
                            'constraints' => [
302
                            'constraints' => [
310
                                'id' => '[0-9]+',
303
                                'id' => '[0-9]+',
311
                            ],
304
                            ],
312
                            'defaults' => [
305
                            'defaults' => [
313
                                'controller' => '\LeadersLinked\Controller\RecruitmentCreateJobDescriptionController',
306
                                'controller' => '\\LeadersLinked\\Controller\\RecruitmentCreateJobDescriptionController',
314
                                'action' => 'index'
307
                                'action' => 'index',
315
                            ]
308
                            ],
316
                        ],
309
                        ],
317
                    ],
310
                    ],
318
                ],
311
                ],
319
            ],
312
            ],
320
            'language' => [
313
            'language' => [
321
                'type' => Literal::class,
314
                'type' => Literal::class,
322
                'options' => [
315
                'options' => [
323
                    'route' => '/language',
316
                    'route' => '/language',
324
                    'defaults' => [
317
                    'defaults' => [
325
                        'controller' => '\LeadersLinked\Controller\HomeController',
318
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
326
                        'action' => 'language'
319
                        'action' => 'language',
327
                    ]
320
                    ],
328
                ]
321
                ],
329
            ],
322
            ],
330
 
-
 
331
            'habits' => [
323
            'habits' => [
332
                'type' => Literal::class,
324
                'type' => Literal::class,
333
                'options' => [
325
                'options' => [
334
                    'route' => '/habits',
326
                    'route' => '/habits',
335
                    'defaults' => [
327
                    'defaults' => [
336
                        'controller' => '\LeadersLinked\Controller\HabitController',
328
                        'controller' => '\\LeadersLinked\\Controller\\HabitController',
337
                        'action' => 'index'
329
                        'action' => 'index',
338
                    ]
330
                    ],
339
                ],
331
                ],
340
                'may_terminate' => true,
332
                'may_terminate' => true,
341
                'child_routes' => [
333
                'child_routes' => [
342
                    'aspect-daily-log' => [
334
                    'aspect-daily-log' => [
343
                        'type' => Literal::class,
335
                        'type' => Literal::class,
344
                        'options' => [
336
                        'options' => [
345
                            'route' => '/aspect-daily-log',
337
                            'route' => '/aspect-daily-log',
346
                            'defaults' => [
338
                            'defaults' => [
347
                                'controller' => '\LeadersLinked\Controller\HabitController',
339
                                'controller' => '\\LeadersLinked\\Controller\\HabitController',
348
                                'action' => 'aspectDailyLog'
340
                                'action' => 'aspectDailyLog',
349
                            ]
341
                            ],
350
                        ],
342
                        ],
351
                        'may_terminate' => true
343
                        'may_terminate' => true,
352
                    ],
344
                    ],
353
 
-
 
354
                    'values' => [
345
                    'values' => [
355
                        'type' => Literal::class,
346
                        'type' => Literal::class,
356
                        'options' => [
347
                        'options' => [
357
                            'route' => '/values',
348
                            'route' => '/values',
358
                            'defaults' => [
349
                            'defaults' => [
359
                                'controller' => '\LeadersLinked\Controller\HabitValueController',
350
                                'controller' => '\\LeadersLinked\\Controller\\HabitValueController',
360
                                'action' => 'index'
351
                                'action' => 'index',
361
                            ]
352
                            ],
362
                        ],
353
                        ],
363
                        'may_terminate' => true,
354
                        'may_terminate' => true,
364
                        'child_routes' => [
355
                        'child_routes' => [
365
                            'add' => [
356
                            'add' => [
366
                                'type' => Literal::class,
357
                                'type' => Literal::class,
367
                                'options' => [
358
                                'options' => [
368
                                    'route' => '/add',
359
                                    'route' => '/add',
369
                                    'defaults' => [
360
                                    'defaults' => [
370
                                        'controller' => '\LeadersLinked\Controller\HabitValueController',
361
                                        'controller' => '\\LeadersLinked\\Controller\\HabitValueController',
371
                                        'action' => 'add'
362
                                        'action' => 'add',
372
                                    ]
363
                                    ],
373
                                ]
364
                                ],
374
                            ],
365
                            ],
375
                            'edit' => [
366
                            'edit' => [
376
                                'type' => Segment::class,
367
                                'type' => Segment::class,
377
                                'options' => [
368
                                'options' => [
378
                                    'route' => '/edit/:id',
369
                                    'route' => '/edit/:id',
379
                                    'constraints' => [
370
                                    'constraints' => [
380
                                        'id' => '[A-Za-z0-9\-]+\=*'
371
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
381
                                    ],
372
                                    ],
382
                                    'defaults' => [
373
                                    'defaults' => [
383
                                        'controller' => '\LeadersLinked\Controller\HabitValueController',
374
                                        'controller' => '\\LeadersLinked\\Controller\\HabitValueController',
384
                                        'action' => 'edit'
375
                                        'action' => 'edit',
385
                                    ]
376
                                    ],
386
                                ]
377
                                ],
387
                            ],
378
                            ],
388
                            'delete' => [
379
                            'delete' => [
389
                                'type' => Segment::class,
380
                                'type' => Segment::class,
390
                                'options' => [
381
                                'options' => [
391
                                    'route' => '/delete/:id',
382
                                    'route' => '/delete/:id',
392
                                    'constraints' => [
383
                                    'constraints' => [
393
                                        'id' => '[A-Za-z0-9\-]+\=*'
384
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
394
                                    ],
385
                                    ],
395
                                    'defaults' => [
386
                                    'defaults' => [
396
                                        'controller' => '\LeadersLinked\Controller\HabitValueController',
387
                                        'controller' => '\\LeadersLinked\\Controller\\HabitValueController',
397
                                        'action' => 'delete'
388
                                        'action' => 'delete',
398
                                    ]
389
                                    ],
399
                                ]
390
                                ],
400
                            ]
391
                            ],
401
                        ]
392
                        ],
402
                    ],
393
                    ],
403
 
-
 
404
                    'paradigms' => [
394
                    'paradigms' => [
405
                        'type' => Literal::class,
395
                        'type' => Literal::class,
406
                        'options' => [
396
                        'options' => [
407
                            'route' => '/paradigms',
397
                            'route' => '/paradigms',
408
                            'defaults' => [
398
                            'defaults' => [
409
                                'controller' => '\LeadersLinked\Controller\HabitParadigmController',
399
                                'controller' => '\\LeadersLinked\\Controller\\HabitParadigmController',
410
                                'action' => 'index'
400
                                'action' => 'index',
411
                            ]
401
                            ],
412
                        ],
402
                        ],
413
                        'may_terminate' => true,
403
                        'may_terminate' => true,
414
                        'child_routes' => [
404
                        'child_routes' => [
415
                            'add' => [
405
                            'add' => [
416
                                'type' => Literal::class,
406
                                'type' => Literal::class,
417
                                'options' => [
407
                                'options' => [
418
                                    'route' => '/add',
408
                                    'route' => '/add',
419
                                    'defaults' => [
409
                                    'defaults' => [
420
                                        'controller' => '\LeadersLinked\Controller\HabitParadigmController',
410
                                        'controller' => '\\LeadersLinked\\Controller\\HabitParadigmController',
421
                                        'action' => 'add'
411
                                        'action' => 'add',
422
                                    ]
412
                                    ],
423
                                ]
413
                                ],
424
                            ],
414
                            ],
425
                            'edit' => [
415
                            'edit' => [
426
                                'type' => Segment::class,
416
                                'type' => Segment::class,
427
                                'options' => [
417
                                'options' => [
428
                                    'route' => '/edit/:id',
418
                                    'route' => '/edit/:id',
429
                                    'constraints' => [
419
                                    'constraints' => [
430
                                        'id' => '[A-Za-z0-9\-]+\=*'
420
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
431
                                    ],
421
                                    ],
432
                                    'defaults' => [
422
                                    'defaults' => [
433
                                        'controller' => '\LeadersLinked\Controller\HabitParadigmController',
423
                                        'controller' => '\\LeadersLinked\\Controller\\HabitParadigmController',
434
                                        'action' => 'edit'
424
                                        'action' => 'edit',
435
                                    ]
425
                                    ],
436
                                ]
426
                                ],
437
                            ],
427
                            ],
438
                            'delete' => [
428
                            'delete' => [
439
                                'type' => Segment::class,
429
                                'type' => Segment::class,
440
                                'options' => [
430
                                'options' => [
441
                                    'route' => '/delete/:id',
431
                                    'route' => '/delete/:id',
442
                                    'constraints' => [
432
                                    'constraints' => [
443
                                        'id' => '[A-Za-z0-9\-]+\=*'
433
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
444
                                    ],
434
                                    ],
445
                                    'defaults' => [
435
                                    'defaults' => [
446
                                        'controller' => '\LeadersLinked\Controller\HabitParadigmController',
436
                                        'controller' => '\\LeadersLinked\\Controller\\HabitParadigmController',
447
                                        'action' => 'delete'
437
                                        'action' => 'delete',
448
                                    ]
438
                                    ],
449
                                ]
439
                                ],
450
                            ]
440
                            ],
451
                        ]
441
                        ],
452
                    ],
442
                    ],
453
 
-
 
454
                    'purposes' => [
443
                    'purposes' => [
455
                        'type' => Literal::class,
444
                        'type' => Literal::class,
456
                        'options' => [
445
                        'options' => [
457
                            'route' => '/purposes',
446
                            'route' => '/purposes',
458
                            'defaults' => [
447
                            'defaults' => [
459
                                'controller' => '\LeadersLinked\Controller\HabitPurposeController',
448
                                'controller' => '\\LeadersLinked\\Controller\\HabitPurposeController',
460
                                'action' => 'index'
449
                                'action' => 'index',
461
                            ]
450
                            ],
462
                        ],
451
                        ],
463
                        'may_terminate' => true,
452
                        'may_terminate' => true,
464
                        'child_routes' => [
453
                        'child_routes' => [
465
                            'add' => [
454
                            'add' => [
466
                                'type' => Literal::class,
455
                                'type' => Literal::class,
467
                                'options' => [
456
                                'options' => [
468
                                    'route' => '/add',
457
                                    'route' => '/add',
469
                                    'defaults' => [
458
                                    'defaults' => [
470
                                        'controller' => '\LeadersLinked\Controller\HabitPurposeController',
459
                                        'controller' => '\\LeadersLinked\\Controller\\HabitPurposeController',
471
                                        'action' => 'add'
460
                                        'action' => 'add',
472
                                    ]
461
                                    ],
473
                                ]
462
                                ],
474
                            ],
463
                            ],
475
                            'edit' => [
464
                            'edit' => [
476
                                'type' => Segment::class,
465
                                'type' => Segment::class,
477
                                'options' => [
466
                                'options' => [
478
                                    'route' => '/edit/:id',
467
                                    'route' => '/edit/:id',
479
                                    'constraints' => [
468
                                    'constraints' => [
480
                                        'id' => '[A-Za-z0-9\-]+\=*'
469
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
481
                                    ],
470
                                    ],
482
                                    'defaults' => [
471
                                    'defaults' => [
483
                                        'controller' => '\LeadersLinked\Controller\HabitPurposeController',
472
                                        'controller' => '\\LeadersLinked\\Controller\\HabitPurposeController',
484
                                        'action' => 'edit'
473
                                        'action' => 'edit',
485
                                    ]
474
                                    ],
486
                                ]
475
                                ],
487
                            ],
476
                            ],
488
                            'delete' => [
477
                            'delete' => [
489
                                'type' => Segment::class,
478
                                'type' => Segment::class,
490
                                'options' => [
479
                                'options' => [
491
                                    'route' => '/delete/:id',
480
                                    'route' => '/delete/:id',
492
                                    'constraints' => [
481
                                    'constraints' => [
493
                                        'id' => '[A-Za-z0-9\-]+\=*'
482
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
494
                                    ],
483
                                    ],
495
                                    'defaults' => [
484
                                    'defaults' => [
496
                                        'controller' => '\LeadersLinked\Controller\HabitPurposeController',
485
                                        'controller' => '\\LeadersLinked\\Controller\\HabitPurposeController',
497
                                        'action' => 'delete'
486
                                        'action' => 'delete',
498
                                    ]
487
                                    ],
499
                                ]
488
                                ],
500
                            ]
489
                            ],
501
                        ]
490
                        ],
502
                    ],
491
                    ],
503
 
-
 
504
                    'skills' => [
492
                    'skills' => [
505
                        'type' => Literal::class,
493
                        'type' => Literal::class,
506
                        'options' => [
494
                        'options' => [
507
                            'route' => '/skills',
495
                            'route' => '/skills',
508
                            'defaults' => [
496
                            'defaults' => [
509
                                'controller' => '\LeadersLinked\Controller\HabitSkillController',
497
                                'controller' => '\\LeadersLinked\\Controller\\HabitSkillController',
510
                                'action' => 'index'
498
                                'action' => 'index',
511
                            ]
499
                            ],
512
                        ],
500
                        ],
513
                        'may_terminate' => true,
501
                        'may_terminate' => true,
514
                        'child_routes' => [
502
                        'child_routes' => [
515
                            'add' => [
503
                            'add' => [
516
                                'type' => Literal::class,
504
                                'type' => Literal::class,
517
                                'options' => [
505
                                'options' => [
518
                                    'route' => '/add',
506
                                    'route' => '/add',
519
                                    'defaults' => [
507
                                    'defaults' => [
520
                                        'controller' => '\LeadersLinked\Controller\HabitSkillController',
508
                                        'controller' => '\\LeadersLinked\\Controller\\HabitSkillController',
521
                                        'action' => 'add'
509
                                        'action' => 'add',
522
                                    ]
510
                                    ],
523
                                ]
511
                                ],
524
                            ],
512
                            ],
525
                            'edit' => [
513
                            'edit' => [
526
                                'type' => Segment::class,
514
                                'type' => Segment::class,
527
                                'options' => [
515
                                'options' => [
528
                                    'route' => '/edit/:id',
516
                                    'route' => '/edit/:id',
529
                                    'constraints' => [
517
                                    'constraints' => [
530
                                        'id' => '[A-Za-z0-9\-]+\=*'
518
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
531
                                    ],
519
                                    ],
532
                                    'defaults' => [
520
                                    'defaults' => [
533
                                        'controller' => '\LeadersLinked\Controller\HabitSkillController',
521
                                        'controller' => '\\LeadersLinked\\Controller\\HabitSkillController',
534
                                        'action' => 'edit'
522
                                        'action' => 'edit',
535
                                    ]
523
                                    ],
536
                                ]
524
                                ],
537
                            ],
525
                            ],
538
                            'delete' => [
526
                            'delete' => [
539
                                'type' => Segment::class,
527
                                'type' => Segment::class,
540
                                'options' => [
528
                                'options' => [
541
                                    'route' => '/delete/:id',
529
                                    'route' => '/delete/:id',
542
                                    'constraints' => [
530
                                    'constraints' => [
543
                                        'id' => '[A-Za-z0-9\-]+\=*'
531
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
544
                                    ],
532
                                    ],
545
                                    'defaults' => [
533
                                    'defaults' => [
546
                                        'controller' => '\LeadersLinked\Controller\HabitSkillController',
534
                                        'controller' => '\\LeadersLinked\\Controller\\HabitSkillController',
547
                                        'action' => 'delete'
535
                                        'action' => 'delete',
548
                                    ]
536
                                    ],
549
                                ]
537
                                ],
550
                            ],
538
                            ],
551
                            'registers' => [
539
                            'registers' => [
552
                                'type' => Segment::class,
540
                                'type' => Segment::class,
553
                                'options' => [
541
                                'options' => [
554
                                    'route' => '/registers/:id',
542
                                    'route' => '/registers/:id',
555
                                    'defaults' => [
543
                                    'defaults' => [
556
                                        'controller' => '\LeadersLinked\Controller\HabitSkillRegisterController',
544
                                        'controller' => '\\LeadersLinked\\Controller\\HabitSkillRegisterController',
557
                                        'action' => 'index'
545
                                        'action' => 'index',
558
                                    ]
546
                                    ],
559
                                ],
547
                                ],
560
                                'may_terminate' => true,
548
                                'may_terminate' => true,
561
                                'child_routes' => [
549
                                'child_routes' => [
562
 
-
 
563
                                    'add' => [
550
                                    'add' => [
564
                                        'type' => Literal::class,
551
                                        'type' => Literal::class,
565
                                        'options' => [
552
                                        'options' => [
566
                                            'route' => '/add',
553
                                            'route' => '/add',
567
                                            'defaults' => [
554
                                            'defaults' => [
568
                                                'controller' => '\LeadersLinked\Controller\HabitSkillRegisterController',
555
                                                'controller' => '\\LeadersLinked\\Controller\\HabitSkillRegisterController',
569
                                                'action' => 'add'
556
                                                'action' => 'add',
570
                                            ]
557
                                            ],
571
                                        ]
558
                                        ],
572
                                    ],
559
                                    ],
573
                                    'edit' => [
560
                                    'edit' => [
574
                                        'type' => Segment::class,
561
                                        'type' => Segment::class,
575
                                        'options' => [
562
                                        'options' => [
576
                                            'route' => '/edit/:register',
563
                                            'route' => '/edit/:register',
577
                                            'constraints' => [
564
                                            'constraints' => [
578
                                                'registerd' => '[A-Za-z0-9\-]+\=*'
565
                                                'registerd' => '[A-Za-z0-9\\-]+\\=*',
579
                                            ],
566
                                            ],
580
                                            'defaults' => [
567
                                            'defaults' => [
581
                                                'controller' => '\LeadersLinked\Controller\HabitSkillRegisterController',
568
                                                'controller' => '\\LeadersLinked\\Controller\\HabitSkillRegisterController',
582
                                                'action' => 'edit'
569
                                                'action' => 'edit',
583
                                            ]
570
                                            ],
584
                                        ]
571
                                        ],
585
                                    ],
572
                                    ],
586
                                    'delete' => [
573
                                    'delete' => [
587
                                        'type' => Segment::class,
574
                                        'type' => Segment::class,
588
                                        'options' => [
575
                                        'options' => [
589
                                            'route' => '/delete/:register',
576
                                            'route' => '/delete/:register',
590
                                            'constraints' => [
577
                                            'constraints' => [
591
                                                'register' => '[A-Za-z0-9\-]+\=*'
578
                                                'register' => '[A-Za-z0-9\\-]+\\=*',
592
                                            ],
579
                                            ],
593
                                            'defaults' => [
580
                                            'defaults' => [
594
                                                'controller' => '\LeadersLinked\Controller\HabitSkillController',
581
                                                'controller' => '\\LeadersLinked\\Controller\\HabitSkillController',
595
                                                'action' => 'delete'
582
                                                'action' => 'delete',
596
                                            ]
583
                                            ],
597
                                        ]
584
                                        ],
598
                                    ]
585
                                    ],
599
                                ]
586
                                ],
600
                            ]
587
                            ],
601
                        ]
588
                        ],
602
                    ],
589
                    ],
603
 
-
 
604
                    'goals' => [
590
                    'goals' => [
605
                        'type' => Literal::class,
591
                        'type' => Literal::class,
606
                        'options' => [
592
                        'options' => [
607
                            'route' => '/goals',
593
                            'route' => '/goals',
608
                            'defaults' => [
594
                            'defaults' => [
609
                                'controller' => '\LeadersLinked\Controller\HabitGoalController',
595
                                'controller' => '\\LeadersLinked\\Controller\\HabitGoalController',
610
                                'action' => 'index'
596
                                'action' => 'index',
611
                            ]
597
                            ],
612
                        ],
598
                        ],
613
                        'may_terminate' => true,
599
                        'may_terminate' => true,
614
                        'child_routes' => [
600
                        'child_routes' => [
615
                            'add' => [
601
                            'add' => [
616
                                'type' => Literal::class,
602
                                'type' => Literal::class,
617
                                'options' => [
603
                                'options' => [
618
                                    'route' => '/add',
604
                                    'route' => '/add',
619
                                    'defaults' => [
605
                                    'defaults' => [
620
                                        'controller' => '\LeadersLinked\Controller\HabitGoalController',
606
                                        'controller' => '\\LeadersLinked\\Controller\\HabitGoalController',
621
                                        'action' => 'add'
607
                                        'action' => 'add',
622
                                    ]
608
                                    ],
623
                                ]
609
                                ],
624
                            ],
610
                            ],
625
                            'edit' => [
611
                            'edit' => [
626
                                'type' => Segment::class,
612
                                'type' => Segment::class,
627
                                'options' => [
613
                                'options' => [
628
                                    'route' => '/edit/:id',
614
                                    'route' => '/edit/:id',
629
                                    'constraints' => [
615
                                    'constraints' => [
630
                                        'id' => '[A-Za-z0-9\-]+\=*'
616
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
631
                                    ],
617
                                    ],
632
                                    'defaults' => [
618
                                    'defaults' => [
633
                                        'controller' => '\LeadersLinked\Controller\HabitGoalController',
619
                                        'controller' => '\\LeadersLinked\\Controller\\HabitGoalController',
634
                                        'action' => 'edit'
620
                                        'action' => 'edit',
635
                                    ]
621
                                    ],
636
                                ]
622
                                ],
637
                            ],
623
                            ],
638
                            'delete' => [
624
                            'delete' => [
639
                                'type' => Segment::class,
625
                                'type' => Segment::class,
640
                                'options' => [
626
                                'options' => [
641
                                    'route' => '/delete/:id',
627
                                    'route' => '/delete/:id',
642
                                    'constraints' => [
628
                                    'constraints' => [
643
                                        'id' => '[A-Za-z0-9\-]+\=*'
629
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
644
                                    ],
630
                                    ],
645
                                    'defaults' => [
631
                                    'defaults' => [
646
                                        'controller' => '\LeadersLinked\Controller\HabitGoalController',
632
                                        'controller' => '\\LeadersLinked\\Controller\\HabitGoalController',
647
                                        'action' => 'delete'
633
                                        'action' => 'delete',
648
                                    ]
634
                                    ],
649
                                ]
635
                                ],
650
                            ]
636
                            ],
651
                        ]
637
                        ],
652
                    ],
638
                    ],
653
                    'reports' => [
639
                    'reports' => [
654
                        'type' => Literal::class,
640
                        'type' => Literal::class,
655
                        'options' => [
641
                        'options' => [
656
                            'route' => '/reports',
642
                            'route' => '/reports',
657
                            'defaults' => [
643
                            'defaults' => [
658
                                'controller' => '\LeadersLinked\Controller\HabitReportController',
644
                                'controller' => '\\LeadersLinked\\Controller\\HabitReportController',
659
                                'action' => 'index'
645
                                'action' => 'index',
660
                            ]
646
                            ],
661
                        ],
647
                        ],
662
                        'may_terminate' => true,
648
                        'may_terminate' => true,
663
                        'child_routes' => []
649
                        'child_routes' => [],
664
                    ],
650
                    ],
665
                ]
651
                ],
666
            ],
652
            ],
667
 
-
 
668
            'post' => [
653
            'post' => [
669
                'type' => Segment::class,
654
                'type' => Segment::class,
670
                'options' => [
655
                'options' => [
671
                    'route' => '/post/:id',
656
                    'route' => '/post/:id',
672
                    'constraints' => [
657
                    'constraints' => [
673
                        'id' => '[A-Za-z0-9\-]+\=*'
658
                        'id' => '[A-Za-z0-9\\-]+\\=*',
674
                    ],
659
                    ],
675
                    'defaults' => [
660
                    'defaults' => [
676
                        'controller' => '\LeadersLinked\Controller\PostController',
661
                        'controller' => '\\LeadersLinked\\Controller\\PostController',
677
                        'action' => 'view'
662
                        'action' => 'view',
678
                    ]
663
                    ],
679
                ],
664
                ],
680
                'may_terminate' => true,
665
                'may_terminate' => true,
681
                'child_routes' => [
666
                'child_routes' => [
682
                    'reactions' => [
667
                    'reactions' => [
683
                        'type' => Segment::class,
668
                        'type' => Segment::class,
684
                        'options' => [
669
                        'options' => [
685
                            'route' => '/reactions',
670
                            'route' => '/reactions',
686
                            'defaults' => [
671
                            'defaults' => [
687
                                'controller' => '\LeadersLinked\Controller\PostController',
672
                                'controller' => '\\LeadersLinked\\Controller\\PostController',
688
                                'action' => 'reactions'
673
                                'action' => 'reactions',
689
                            ]
674
                            ],
690
                        ]
675
                        ],
691
                    ],
676
                    ],
692
                    'comments' => [
677
                    'comments' => [
693
                        'type' => Segment::class,
678
                        'type' => Segment::class,
694
                        'options' => [
679
                        'options' => [
695
                            'route' => '/comments',
680
                            'route' => '/comments',
696
                            'defaults' => [
681
                            'defaults' => [
697
                                'controller' => '\LeadersLinked\Controller\PostController',
682
                                'controller' => '\\LeadersLinked\\Controller\\PostController',
698
                                'action' => 'comments'
683
                                'action' => 'comments',
699
                            ]
684
                            ],
700
                        ],
685
                        ],
701
                        'may_terminate' => true,
686
                        'may_terminate' => true,
702
                        'child_routes' => [
687
                        'child_routes' => [
703
                            'add' => [
688
                            'add' => [
704
                                'type' => Segment::class,
689
                                'type' => Segment::class,
705
                                'options' => [
690
                                'options' => [
706
                                    'route' => '/add',
691
                                    'route' => '/add',
707
                                    'defaults' => [
692
                                    'defaults' => [
708
                                        'controller' => '\LeadersLinked\Controller\PostController',
693
                                        'controller' => '\\LeadersLinked\\Controller\\PostController',
709
                                        'action' => 'commentsAdd'
694
                                        'action' => 'commentsAdd',
710
                                    ]
695
                                    ],
711
                                ]
696
                                ],
712
                            ],
697
                            ],
713
                            'delete' => [
698
                            'delete' => [
714
                                'type' => Segment::class,
699
                                'type' => Segment::class,
715
                                'options' => [
700
                                'options' => [
716
                                    'route' => '/delete/:comment',
701
                                    'route' => '/delete/:comment',
717
                                    'constraints' => [
702
                                    'constraints' => [
718
                                        'comment' => '[A-Za-z0-9\-]+\=*'
703
                                        'comment' => '[A-Za-z0-9\\-]+\\=*',
719
                                    ],
704
                                    ],
720
                                    'defaults' => [
705
                                    'defaults' => [
721
                                        'controller' => '\LeadersLinked\Controller\PostController',
706
                                        'controller' => '\\LeadersLinked\\Controller\\PostController',
722
                                        'action' => 'commentsDelete'
707
                                        'action' => 'commentsDelete',
723
                                    ]
708
                                    ],
724
                                ]
709
                                ],
725
                            ]
710
                            ],
726
                        ]
711
                        ],
727
                    ],
712
                    ],
728
                    'save-reaction' => [
713
                    'save-reaction' => [
729
                        'type' => Segment::class,
714
                        'type' => Segment::class,
730
                        'options' => [
715
                        'options' => [
731
                            'route' => '/save-reaction',
716
                            'route' => '/save-reaction',
732
                            'defaults' => [
717
                            'defaults' => [
733
                                'controller' => '\LeadersLinked\Controller\PostController',
718
                                'controller' => '\\LeadersLinked\\Controller\\PostController',
734
                                'action' => 'saveReaction'
719
                                'action' => 'saveReaction',
735
                            ]
720
                            ],
736
                        ]
721
                        ],
737
                    ],
722
                    ],
738
 
-
 
739
                    'delete-reaction' => [
723
                    'delete-reaction' => [
740
                        'type' => Segment::class,
724
                        'type' => Segment::class,
741
                        'options' => [
725
                        'options' => [
742
                            'route' => '/delete-reaction',
726
                            'route' => '/delete-reaction',
743
                            'defaults' => [
727
                            'defaults' => [
744
                                'controller' => '\LeadersLinked\Controller\PostController',
728
                                'controller' => '\\LeadersLinked\\Controller\\PostController',
745
                                'action' => 'deleteReaction'
729
                                'action' => 'deleteReaction',
746
                            ]
730
                            ],
747
                        ]
731
                        ],
748
                    ]
732
                    ],
749
                ]
733
                ],
750
            ],
734
            ],
751
            'privacy-policy' => [
735
            'privacy-policy' => [
752
                'type' => Literal::class,
736
                'type' => Literal::class,
753
                'options' => [
737
                'options' => [
754
                    'route' => '/privacy-policy',
738
                    'route' => '/privacy-policy',
755
                    'defaults' => [
739
                    'defaults' => [
756
                        'controller' => '\LeadersLinked\Controller\HomeController',
740
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
757
                        'action' => 'privacyPolicy'
741
                        'action' => 'privacyPolicy',
758
                    ]
742
                    ],
759
                ]
743
                ],
760
            ],
744
            ],
761
            'cookies' => [
745
            'cookies' => [
762
                'type' => Literal::class,
746
                'type' => Literal::class,
763
                'options' => [
747
                'options' => [
764
                    'route' => '/cookies',
748
                    'route' => '/cookies',
765
                    'defaults' => [
749
                    'defaults' => [
766
                        'controller' => '\LeadersLinked\Controller\HomeController',
750
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
767
                        'action' => 'cookies'
751
                        'action' => 'cookies',
768
                    ]
752
                    ],
769
                ]
753
                ],
770
            ],
754
            ],
771
            'professionalism-policy' => [
755
            'professionalism-policy' => [
772
                'type' => Literal::class,
756
                'type' => Literal::class,
773
                'options' => [
757
                'options' => [
774
                    'route' => '/professionalism-policy',
758
                    'route' => '/professionalism-policy',
775
                    'defaults' => [
759
                    'defaults' => [
776
                        'controller' => '\LeadersLinked\Controller\HomeController',
760
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
777
                        'action' => 'professionalismPolicy'
761
                        'action' => 'professionalismPolicy',
778
                    ]
762
                    ],
779
                ]
763
                ],
780
            ],
764
            ],
781
            'terms-and-conditions' => [
765
            'terms-and-conditions' => [
782
                'type' => Literal::class,
766
                'type' => Literal::class,
783
                'options' => [
767
                'options' => [
784
                    'route' => '/terms-and-conditions',
768
                    'route' => '/terms-and-conditions',
785
                    'defaults' => [
769
                    'defaults' => [
786
                        'controller' => '\LeadersLinked\Controller\HomeController',
770
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
787
                        'action' => 'termsAndConditions'
771
                        'action' => 'termsAndConditions',
788
                    ]
772
                    ],
789
                ]
773
                ],
790
            ],
774
            ],
791
            'check-session' => [
775
            'check-session' => [
792
                'type' => Literal::class,
776
                'type' => Literal::class,
793
                'options' => [
777
                'options' => [
794
                    'route' => '/check-session',
778
                    'route' => '/check-session',
795
                    'defaults' => [
779
                    'defaults' => [
796
                        'controller' => '\LeadersLinked\Controller\HomeController',
780
                        'controller' => '\\LeadersLinked\\Controller\\HomeController',
797
                        'action' => 'checkSession'
781
                        'action' => 'checkSession',
798
                    ]
782
                    ],
799
                ]
783
                ],
800
            ],
784
            ],
801
            'abuse-report' => [
785
            'abuse-report' => [
802
                'type' => Literal::class,
786
                'type' => Literal::class,
803
                'options' => [
787
                'options' => [
804
                    'route' => '/abuse-report',
788
                    'route' => '/abuse-report',
805
                    'defaults' => [
789
                    'defaults' => [
806
                        'controller' => '\LeadersLinked\Controller\AbuseReportController',
790
                        'controller' => '\\LeadersLinked\\Controller\\AbuseReportController',
807
                        'action' => 'index'
791
                        'action' => 'index',
808
                    ]
792
                    ],
809
                ],
793
                ],
810
                'may_terminate' => true,
794
                'may_terminate' => true,
811
                'child_routes' => [
795
                'child_routes' => [
812
                    'view' => [
796
                    'view' => [
813
                        'type' => Segment::class,
797
                        'type' => Segment::class,
814
                        'options' => [
798
                        'options' => [
815
                            'route' => '/view/:id',
799
                            'route' => '/view/:id',
816
                            'constraints' => [
800
                            'constraints' => [
817
                                'id' => '[A-Za-z0-9\-]+\=*'
801
                                'id' => '[A-Za-z0-9\\-]+\\=*',
818
                            ],
802
                            ],
819
                            'defaults' => [
803
                            'defaults' => [
820
                                'controller' => '\LeadersLinked\Controller\AbuseReportController',
804
                                'controller' => '\\LeadersLinked\\Controller\\AbuseReportController',
821
                                'action' => 'view'
805
                                'action' => 'view',
822
                            ]
806
                            ],
823
                        ]
807
                        ],
824
                    ]
808
                    ],
825
                ]
809
                ],
826
            ],
810
            ],
827
            'notifications' => [
811
            'notifications' => [
828
                'type' => Literal::class,
812
                'type' => Literal::class,
829
                'options' => [
813
                'options' => [
830
                    'route' => '/notifications',
814
                    'route' => '/notifications',
831
                    'defaults' => [
815
                    'defaults' => [
832
                        'controller' => '\LeadersLinked\Controller\NotificationController',
816
                        'controller' => '\\LeadersLinked\\Controller\\NotificationController',
833
                        'action' => 'index'
817
                        'action' => 'index',
834
                    ]
818
                    ],
835
                ],
819
                ],
836
                'may_terminate' => true,
820
                'may_terminate' => true,
837
                'child_routes' => [
821
                'child_routes' => [
838
                    'mark-read' => [
822
                    'mark-read' => [
839
                        'type' => Segment::class,
823
                        'type' => Segment::class,
840
                        'options' => [
824
                        'options' => [
841
                            'route' => '/mark-read/:id',
825
                            'route' => '/mark-read/:id',
842
                            'constraints' => [
826
                            'constraints' => [
843
                                'id' => '[A-Za-z0-9\-]+\=*'
827
                                'id' => '[A-Za-z0-9\\-]+\\=*',
844
                            ],
828
                            ],
845
                            'defaults' => [
829
                            'defaults' => [
846
                                'controller' => '\LeadersLinked\Controller\NotificationController',
830
                                'controller' => '\\LeadersLinked\\Controller\\NotificationController',
847
                                'action' => 'markRead'
831
                                'action' => 'markRead',
848
                            ]
832
                            ],
849
                        ]
833
                        ],
850
                    ],
834
                    ],
851
                    'mark-all-read' => [
835
                    'mark-all-read' => [
852
                        'type' => Literal::class,
836
                        'type' => Literal::class,
853
                        'options' => [
837
                        'options' => [
854
                            'route' => '/mark-all-read',
838
                            'route' => '/mark-all-read',
855
                            'defaults' => [
839
                            'defaults' => [
856
                                'controller' => '\LeadersLinked\Controller\NotificationController',
840
                                'controller' => '\\LeadersLinked\\Controller\\NotificationController',
857
                                'action' => 'markAllRead'
841
                                'action' => 'markAllRead',
858
                            ]
842
                            ],
859
                        ]
843
                        ],
860
                    ],
844
                    ],
861
                    'delete' => [
845
                    'delete' => [
862
                        'type' => Segment::class,
846
                        'type' => Segment::class,
863
                        'options' => [
847
                        'options' => [
864
                            'route' => '/delete/:id',
848
                            'route' => '/delete/:id',
865
                            'constraints' => [
849
                            'constraints' => [
866
                                'id' => '[A-Za-z0-9\-]+\=*'
850
                                'id' => '[A-Za-z0-9\\-]+\\=*',
867
                            ],
851
                            ],
868
                            'defaults' => [
852
                            'defaults' => [
869
                                'controller' => '\LeadersLinked\Controller\NotificationController',
853
                                'controller' => '\\LeadersLinked\\Controller\\NotificationController',
870
                                'action' => 'delete'
854
                                'action' => 'delete',
871
                            ]
855
                            ],
872
                        ]
856
                        ],
873
                    ],
857
                    ],
874
                    'clear' => [
858
                    'clear' => [
875
                        'type' => Literal::class,
859
                        'type' => Literal::class,
876
                        'options' => [
860
                        'options' => [
877
                            'route' => '/clear',
861
                            'route' => '/clear',
878
                            'defaults' => [
862
                            'defaults' => [
879
                                'controller' => '\LeadersLinked\Controller\NotificationController',
863
                                'controller' => '\\LeadersLinked\\Controller\\NotificationController',
880
                                'action' => 'clear'
864
                                'action' => 'clear',
881
                            ]
865
                            ],
882
                        ]
866
                        ],
883
                    ],
867
                    ],
884
                    'unreads' => [
868
                    'unreads' => [
885
                        'type' => Literal::class,
869
                        'type' => Literal::class,
886
                        'options' => [
870
                        'options' => [
887
                            'route' => '/unreads',
871
                            'route' => '/unreads',
888
                            'defaults' => [
872
                            'defaults' => [
889
                                'controller' => '\LeadersLinked\Controller\NotificationController',
873
                                'controller' => '\\LeadersLinked\\Controller\\NotificationController',
890
                                'action' => 'unreads'
874
                                'action' => 'unreads',
891
                            ]
875
                            ],
892
                        ]
876
                        ],
893
                    ]
877
                    ],
894
                ]
878
                ],
895
            ],
879
            ],
896
            'impersonate' => [
880
            'impersonate' => [
897
                'type' => Literal::class,
881
                'type' => Literal::class,
898
                'options' => [
882
                'options' => [
899
                    'route' => '/impersonate',
883
                    'route' => '/impersonate',
900
                    'defaults' => [
884
                    'defaults' => [
901
                        'controller' => '\LeadersLinked\Controller\ImpersonateController',
885
                        'controller' => '\\LeadersLinked\\Controller\\ImpersonateController',
902
                        'action' => 'index'
886
                        'action' => 'index',
903
                    ]
887
                    ],
904
                ],
888
                ],
905
                'may_terminate' => true,
889
                'may_terminate' => true,
906
                'child_routes' => [
890
                'child_routes' => [
907
                    'execute' => [
891
                    'execute' => [
908
                        'type' => Segment::class,
892
                        'type' => Segment::class,
909
                        'options' => [
893
                        'options' => [
910
                            'route' => '/execute/:id',
894
                            'route' => '/execute/:id',
911
                            'constraints' => [
895
                            'constraints' => [
912
                                'id' => '[A-Za-z0-9\-]+\=*'
896
                                'id' => '[A-Za-z0-9\\-]+\\=*',
913
                            ],
897
                            ],
914
                            'defaults' => [
898
                            'defaults' => [
915
                                'controller' => '\LeadersLinked\Controller\ImpersonateController',
899
                                'controller' => '\\LeadersLinked\\Controller\\ImpersonateController',
916
                                'action' => 'execute'
900
                                'action' => 'execute',
917
                            ]
901
                            ],
918
                        ]
902
                        ],
919
                    ]
903
                    ],
920
                ]
904
                ],
921
            ],
905
            ],
922
 
-
 
923
            'my-coach' => [
906
            'my-coach' => [
924
                'type' => Literal::class,
907
                'type' => Literal::class,
925
                'options' => [
908
                'options' => [
926
                    'route' => '/my-coach',
909
                    'route' => '/my-coach',
927
                    'defaults' => [
910
                    'defaults' => [
928
                        'controller' => '\LeadersLinked\Controller\MyCoachController',
911
                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
929
                        'action' => 'index'
912
                        'action' => 'index',
930
                    ]
913
                    ],
931
                ],
914
                ],
932
                'may_terminate' => true,
915
                'may_terminate' => true,
933
                'child_routes' => [
916
                'child_routes' => [
934
                    'questions' => [
917
                    'questions' => [
935
                        'type' => Literal::class,
918
                        'type' => Literal::class,
936
                        'options' => [
919
                        'options' => [
937
                            'route' => '/questions',
920
                            'route' => '/questions',
938
                            'defaults' => [
921
                            'defaults' => [
939
                                'controller' => '\LeadersLinked\Controller\MyCoachController',
922
                                'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
940
                                'action' => 'questions'
923
                                'action' => 'questions',
941
                            ]
924
                            ],
942
                        ],
925
                        ],
943
                        'may_terminate' => true,
926
                        'may_terminate' => true,
944
                        'child_routes' => [
927
                        'child_routes' => [
945
                            'add' => [
928
                            'add' => [
946
                                'type' => Literal::class,
929
                                'type' => Literal::class,
947
                                'options' => [
930
                                'options' => [
948
                                    'route' => '/add',
931
                                    'route' => '/add',
949
                                    'defaults' => [
932
                                    'defaults' => [
950
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
933
                                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
951
                                        'action' => 'addQuestion'
934
                                        'action' => 'addQuestion',
952
                                    ]
935
                                    ],
953
                                ]
936
                                ],
954
                            ],
937
                            ],
955
                            'reactions' => [
938
                            'reactions' => [
956
                                'type' => Segment::class,
939
                                'type' => Segment::class,
957
                                'options' => [
940
                                'options' => [
958
                                    'route' => '/reactions/:id',
941
                                    'route' => '/reactions/:id',
959
                                    'constraints' => [
942
                                    'constraints' => [
960
                                        'id' => '[A-Za-z0-9\-]+\=*'
943
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
961
                                    ],
944
                                    ],
962
                                    'defaults' => [
945
                                    'defaults' => [
963
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
946
                                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
964
                                        'action' => 'reactions'
947
                                        'action' => 'reactions',
965
                                    ]
948
                                    ],
966
                                ]
949
                                ],
967
                            ],
950
                            ],
968
                            'view' => [
951
                            'view' => [
969
                                'type' => Segment::class,
952
                                'type' => Segment::class,
970
                                'options' => [
953
                                'options' => [
971
                                    'route' => '/view/:id',
954
                                    'route' => '/view/:id',
972
                                    'constraints' => [
955
                                    'constraints' => [
973
                                        'id' => '[A-Za-z0-9\-]+\=*'
956
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
974
                                    ],
957
                                    ],
975
                                    'defaults' => [
958
                                    'defaults' => [
976
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
959
                                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
977
                                        'action' => 'viewQuestion'
960
                                        'action' => 'viewQuestion',
978
                                    ]
961
                                    ],
979
                                ]
962
                                ],
980
                            ],
963
                            ],
981
                            'edit' => [
964
                            'edit' => [
982
                                'type' => Segment::class,
965
                                'type' => Segment::class,
983
                                'options' => [
966
                                'options' => [
984
                                    'route' => '/edit/:id',
967
                                    'route' => '/edit/:id',
985
                                    'constraints' => [
968
                                    'constraints' => [
986
                                        'id' => '[A-Za-z0-9\-]+\=*'
969
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
987
                                    ],
970
                                    ],
988
                                    'defaults' => [
971
                                    'defaults' => [
989
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
972
                                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
990
                                        'action' => 'editQuestion'
973
                                        'action' => 'editQuestion',
991
                                    ]
974
                                    ],
992
                                ]
975
                                ],
993
                            ],
976
                            ],
994
                            'delete' => [
977
                            'delete' => [
995
                                'type' => Segment::class,
978
                                'type' => Segment::class,
996
                                'options' => [
979
                                'options' => [
997
                                    'route' => '/delete/:id',
980
                                    'route' => '/delete/:id',
998
                                    'constraints' => [
981
                                    'constraints' => [
999
                                        'id' => '[A-Za-z0-9\-]+\=*'
982
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
1000
                                    ],
983
                                    ],
1001
                                    'defaults' => [
984
                                    'defaults' => [
1002
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
985
                                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1003
                                        'action' => 'deleteQuestion'
986
                                        'action' => 'deleteQuestion',
1004
                                    ]
987
                                    ],
1005
                                ]
988
                                ],
1006
                            ],
989
                            ],
1007
                            'reaction' => [
990
                            'reaction' => [
1008
                                'type' => Segment::class,
991
                                'type' => Segment::class,
1009
                                'options' => [
992
                                'options' => [
1010
                                    'route' => '/reaction/:id',
993
                                    'route' => '/reaction/:id',
1011
                                    'constraints' => [
994
                                    'constraints' => [
1012
                                        'id' => '[A-Za-z0-9\-]+\=*'
995
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
1013
                                    ],
996
                                    ],
1014
                                    'defaults' => [
997
                                    'defaults' => [
1015
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
998
                                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1016
                                        'action' => 'reaction'
999
                                        'action' => 'reaction',
1017
                                    ]
1000
                                    ],
1018
                                ],
1001
                                ],
1019
                                'may_terminate' => true,
1002
                                'may_terminate' => true,
1020
                                'child_routes' => [
1003
                                'child_routes' => [
1021
                                    'save' => [
1004
                                    'save' => [
1022
                                        'type' => Literal::class,
1005
                                        'type' => Literal::class,
1023
                                        'options' => [
1006
                                        'options' => [
1024
                                            'route' => '/save',
1007
                                            'route' => '/save',
1025
                                            'defaults' => [
1008
                                            'defaults' => [
1026
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
1009
                                                'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1027
                                                'action' => 'saveReaction'
1010
                                                'action' => 'saveReaction',
1028
                                            ]
1011
                                            ],
1029
                                        ]
1012
                                        ],
1030
                                    ],
1013
                                    ],
1031
                                    'delete' => [
1014
                                    'delete' => [
1032
                                        'type' => Literal::class,
1015
                                        'type' => Literal::class,
1033
                                        'options' => [
1016
                                        'options' => [
1034
                                            'route' => '/delete',
1017
                                            'route' => '/delete',
1035
                                            'defaults' => [
1018
                                            'defaults' => [
1036
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
1019
                                                'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1037
                                                'action' => 'deleteReaction'
1020
                                                'action' => 'deleteReaction',
1038
                                            ]
1021
                                            ],
1039
                                        ]
1022
                                        ],
1040
                                    ]
1023
                                    ],
1041
                                ]
1024
                                ],
1042
                            ],
1025
                            ],
1043
                            'answers' => [
1026
                            'answers' => [
1044
                                'type' => Segment::class,
1027
                                'type' => Segment::class,
1045
                                'options' => [
1028
                                'options' => [
1046
                                    'route' => '/answers/:id',
1029
                                    'route' => '/answers/:id',
1047
                                    'constraints' => [
1030
                                    'constraints' => [
1048
                                        'id' => '[A-Za-z0-9\-]+\=*'
1031
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
1049
                                    ],
1032
                                    ],
1050
                                    'defaults' => [
1033
                                    'defaults' => [
1051
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
1034
                                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1052
                                        'action' => 'answers'
1035
                                        'action' => 'answers',
1053
                                    ]
1036
                                    ],
1054
                                ],
1037
                                ],
1055
                                'may_terminate' => true,
1038
                                'may_terminate' => true,
1056
                                'child_routes' => [
1039
                                'child_routes' => [
1057
                                    'add' => [
1040
                                    'add' => [
1058
                                        'type' => Literal::class,
1041
                                        'type' => Literal::class,
1059
                                        'options' => [
1042
                                        'options' => [
1060
                                            'route' => '/add',
1043
                                            'route' => '/add',
1061
                                            'defaults' => [
1044
                                            'defaults' => [
1062
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
1045
                                                'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1063
                                                'action' => 'addAnswer'
1046
                                                'action' => 'addAnswer',
1064
                                            ]
1047
                                            ],
1065
                                        ]
1048
                                        ],
1066
                                    ],
1049
                                    ],
1067
 
-
 
1068
                                    'edit' => [
1050
                                    'edit' => [
1069
                                        'type' => Segment::class,
1051
                                        'type' => Segment::class,
1070
                                        'options' => [
1052
                                        'options' => [
1071
                                            'route' => '/edit/:answer',
1053
                                            'route' => '/edit/:answer',
1072
                                            'constraints' => [
1054
                                            'constraints' => [
1073
                                                'answer' => '[A-Za-z0-9\-]+\=*'
1055
                                                'answer' => '[A-Za-z0-9\\-]+\\=*',
1074
                                            ],
1056
                                            ],
1075
                                            'defaults' => [
1057
                                            'defaults' => [
1076
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
1058
                                                'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1077
                                                'action' => 'editAnswer'
1059
                                                'action' => 'editAnswer',
1078
                                            ]
1060
                                            ],
1079
                                        ]
1061
                                        ],
1080
                                    ],
1062
                                    ],
1081
                                    'delete' => [
1063
                                    'delete' => [
1082
                                        'type' => Segment::class,
1064
                                        'type' => Segment::class,
1083
                                        'options' => [
1065
                                        'options' => [
1084
                                            'route' => '/delete/:answer',
1066
                                            'route' => '/delete/:answer',
1085
                                            'constraints' => [
1067
                                            'constraints' => [
1086
                                                'answer' => '[A-Za-z0-9\-]+\=*'
1068
                                                'answer' => '[A-Za-z0-9\\-]+\\=*',
1087
                                            ],
1069
                                            ],
1088
                                            'defaults' => [
1070
                                            'defaults' => [
1089
                                                'controller' => '\LeadersLinked\Controller\MyCoachController',
1071
                                                'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1090
                                                'action' => 'deleteAnswer'
1072
                                                'action' => 'deleteAnswer',
1091
                                            ]
1073
                                            ],
1092
                                        ]
1074
                                        ],
1093
                                    ]
1075
                                    ],
1094
                                ]
1076
                                ],
1095
                            ],
1077
                            ],
1096
 
-
 
1097
                            'comments' => [
1078
                            'comments' => [
1098
                                'type' => Segment::class,
1079
                                'type' => Segment::class,
1099
                                'options' => [
1080
                                'options' => [
1100
                                    'route' => '/comments/:id',
1081
                                    'route' => '/comments/:id',
1101
                                    'constraints' => [
1082
                                    'constraints' => [
1102
                                        'id' => '[A-Za-z0-9\-]+\=*'
1083
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
1103
                                    ],
1084
                                    ],
1104
                                    'defaults' => [
1085
                                    'defaults' => [
1105
                                        'controller' => '\LeadersLinked\Controller\MyCoachController',
1086
                                        'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1106
                                        'action' => 'comments'
1087
                                        'action' => 'comments',
1107
                                    ]
1088
                                    ],
1108
                                ],
1089
                                ],
1109
                                'may_terminate' => true,
1090
                                'may_terminate' => true,
1110
                                'child_routes' => [
1091
                                'child_routes' => [
1111
                                    'add' => [
1092
                                    'add' => [
1112
                                        'type' => Literal::class,
1093
                                        'type' => Literal::class,
1113
                                        'options' => [
1094
                                        'options' => [
1114
                                            'route' => '/add',
1095
                                            'route' => '/add',
1115
                                            'defaults' => [
1096
                                            'defaults' => [
1116
                                                'controller' => '\LeadersLinked\\Controller\MyCoachController',
1097
                                                'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1117
                                                'action' => 'addComment'
1098
                                                'action' => 'addComment',
1118
                                            ]
1099
                                            ],
1119
                                        ]
1100
                                        ],
1120
                                    ],
1101
                                    ],
1121
                                    'delete' => [
1102
                                    'delete' => [
1122
                                        'type' => Segment::class,
1103
                                        'type' => Segment::class,
1123
                                        'options' => [
1104
                                        'options' => [
1124
                                            'route' => '/delete/:comment',
1105
                                            'route' => '/delete/:comment',
1125
                                            'constraints' => [
1106
                                            'constraints' => [
1126
                                                'comment' => '[A-Za-z0-9\-]+\=*'
1107
                                                'comment' => '[A-Za-z0-9\\-]+\\=*',
1127
                                            ],
1108
                                            ],
1128
                                            'defaults' => [
1109
                                            'defaults' => [
1129
                                                'controller' => '\LeadersLinked\\Controller\MyCoachController',
1110
                                                'controller' => '\\LeadersLinked\\Controller\\MyCoachController',
1130
                                                'action' => 'deleteComment'
1111
                                                'action' => 'deleteComment',
1131
                                            ]
1112
                                            ],
1132
                                        ]
1113
                                        ],
1133
                                    ]
1114
                                    ],
1134
                                ]
1115
                                ],
1135
                            ]
1116
                            ],
1136
                        ]
1117
                        ],
1137
                    ]
1118
                    ],
1138
                ]
1119
                ],
1139
            ],
1120
            ],
1140
 
-
 
1141
            'knowledge-area' => [
1121
            'knowledge-area' => [
1142
                'type' => Literal::class,
1122
                'type' => Literal::class,
1143
                'options' => [
1123
                'options' => [
1144
                    'route' => '/knowledge-area',
1124
                    'route' => '/knowledge-area',
1145
                    'defaults' => [
1125
                    'defaults' => [
1146
                        'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1126
                        'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1147
                        'action' => 'index'
1127
                        'action' => 'index',
1148
                    ]
1128
                    ],
1149
                ],
1129
                ],
1150
                'may_terminate' => true,
1130
                'may_terminate' => true,
1151
                'child_routes' => [
1131
                'child_routes' => [
1152
                    'add' => [
1132
                    'add' => [
1153
                        'type' => Literal::class,
1133
                        'type' => Literal::class,
1154
                        'options' => [
1134
                        'options' => [
1155
                            'route' => '/add',
1135
                            'route' => '/add',
1156
                            'defaults' => [
1136
                            'defaults' => [
1157
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1137
                                'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1158
                                'action' => 'add'
1138
                                'action' => 'add',
1159
                            ]
1139
                            ],
1160
                        ]
1140
                        ],
1161
                    ],
1141
                    ],
1162
                    'edit' => [
1142
                    'edit' => [
1163
                        'type' => Segment::class,
1143
                        'type' => Segment::class,
1164
                        'options' => [
1144
                        'options' => [
1165
                            'route' => '/edit/:id',
1145
                            'route' => '/edit/:id',
1166
                            'constraints' => [
1146
                            'constraints' => [
1167
                                'id' => '[A-Za-z0-9\-]+\=*'
1147
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1168
                            ],
1148
                            ],
1169
                            'defaults' => [
1149
                            'defaults' => [
1170
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1150
                                'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1171
                                'action' => 'edit'
1151
                                'action' => 'edit',
1172
                            ]
1152
                            ],
1173
                        ]
1153
                        ],
1174
                    ],
1154
                    ],
1175
                    'delete' => [
1155
                    'delete' => [
1176
                        'type' => Segment::class,
1156
                        'type' => Segment::class,
1177
                        'options' => [
1157
                        'options' => [
1178
                            'route' => '/delete/:id',
1158
                            'route' => '/delete/:id',
1179
                            'constraints' => [
1159
                            'constraints' => [
1180
                                'id' => '[A-Za-z0-9\-]+\=*'
1160
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1181
                            ],
1161
                            ],
1182
                            'defaults' => [
1162
                            'defaults' => [
1183
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1163
                                'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1184
                                'action' => 'delete'
1164
                                'action' => 'delete',
1185
                            ]
1165
                            ],
1186
                        ]
1166
                        ],
1187
                    ],
1167
                    ],
1188
                    'view' => [
1168
                    'view' => [
1189
                        'type' => Segment::class,
1169
                        'type' => Segment::class,
1190
                        'options' => [
1170
                        'options' => [
1191
                            'route' => '/view/:id',
1171
                            'route' => '/view/:id',
1192
                            'constraints' => [
1172
                            'constraints' => [
1193
                                'id' => '[A-Za-z0-9\-]+\=*'
1173
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1194
                            ],
1174
                            ],
1195
                            'defaults' => [
1175
                            'defaults' => [
1196
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1176
                                'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1197
                                'action' => 'view'
1177
                                'action' => 'view',
1198
                            ]
1178
                            ],
1199
                        ]
1179
                        ],
1200
                    ],
1180
                    ],
1201
                    'reactions' => [
1181
                    'reactions' => [
1202
                        'type' => Segment::class,
1182
                        'type' => Segment::class,
1203
                        'options' => [
1183
                        'options' => [
1204
                            'route' => '/reactions/:id',
1184
                            'route' => '/reactions/:id',
1205
                            'constraints' => [
1185
                            'constraints' => [
1206
                                'id' => '[A-Za-z0-9\-]+\=*'
1186
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1207
                            ],
1187
                            ],
1208
                            'defaults' => [
1188
                            'defaults' => [
1209
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1189
                                'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1210
                                'action' => 'reactions'
1190
                                'action' => 'reactions',
1211
                            ]
1191
                            ],
1212
                        ]
1192
                        ],
1213
                    ],
1193
                    ],
1214
                    'comments' => [
1194
                    'comments' => [
1215
                        'type' => Segment::class,
1195
                        'type' => Segment::class,
1216
                        'options' => [
1196
                        'options' => [
1217
                            'route' => '/comments/:id',
1197
                            'route' => '/comments/:id',
1218
                            'constraints' => [
1198
                            'constraints' => [
1219
                                'id' => '[A-Za-z0-9\-]+\=*'
1199
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1220
                            ],
1200
                            ],
1221
                            'defaults' => [
1201
                            'defaults' => [
1222
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1202
                                'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1223
                                'action' => 'comments'
1203
                                'action' => 'comments',
1224
                            ]
1204
                            ],
1225
                        ],
1205
                        ],
1226
                        'may_terminate' => true,
1206
                        'may_terminate' => true,
1227
                        'child_routes' => [
1207
                        'child_routes' => [
1228
                            'add' => [
1208
                            'add' => [
1229
                                'type' => Literal::class,
1209
                                'type' => Literal::class,
1230
                                'options' => [
1210
                                'options' => [
1231
                                    'route' => '/add',
1211
                                    'route' => '/add',
1232
                                    'defaults' => [
1212
                                    'defaults' => [
1233
                                        'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1213
                                        'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1234
                                        'action' => 'addComment'
1214
                                        'action' => 'addComment',
1235
                                    ]
1215
                                    ],
1236
                                ]
1216
                                ],
1237
                            ],
1217
                            ],
1238
                            'delete' => [
1218
                            'delete' => [
1239
                                'type' => Segment::class,
1219
                                'type' => Segment::class,
1240
                                'options' => [
1220
                                'options' => [
1241
                                    'route' => '/delete/:comment',
1221
                                    'route' => '/delete/:comment',
1242
                                    'constraints' => [
1222
                                    'constraints' => [
1243
                                        'comment' => '[A-Za-z0-9\-]+\=*'
1223
                                        'comment' => '[A-Za-z0-9\\-]+\\=*',
1244
                                    ],
1224
                                    ],
1245
                                    'defaults' => [
1225
                                    'defaults' => [
1246
                                        'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1226
                                        'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1247
                                        'action' => 'deleteComment'
1227
                                        'action' => 'deleteComment',
1248
                                    ]
1228
                                    ],
1249
                                ]
1229
                                ],
1250
                            ]
1230
                            ],
1251
                        ]
1231
                        ],
1252
                    ],
1232
                    ],
1253
                    'save-reaction' => [
1233
                    'save-reaction' => [
1254
                        'type' => Segment::class,
1234
                        'type' => Segment::class,
1255
                        'options' => [
1235
                        'options' => [
1256
                            'route' => '/save-reaction/:id',
1236
                            'route' => '/save-reaction/:id',
1257
                            'constraints' => [
1237
                            'constraints' => [
1258
                                'id' => '[A-Za-z0-9\-]+\=*'
1238
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1259
                            ],
1239
                            ],
1260
                            'defaults' => [
1240
                            'defaults' => [
1261
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1241
                                'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1262
                                'action' => 'saveReaction'
1242
                                'action' => 'saveReaction',
1263
                            ]
1243
                            ],
1264
                        ]
1244
                        ],
1265
                    ],
1245
                    ],
1266
                    'delete-reaction' => [
1246
                    'delete-reaction' => [
1267
                        'type' => Segment::class,
1247
                        'type' => Segment::class,
1268
                        'options' => [
1248
                        'options' => [
1269
                            'route' => '/delete-reaction/:id',
1249
                            'route' => '/delete-reaction/:id',
1270
                            'constraints' => [
1250
                            'constraints' => [
1271
                                'id' => '[A-Za-z0-9\-]+\=*'
1251
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1272
                            ],
1252
                            ],
1273
                            'defaults' => [
1253
                            'defaults' => [
1274
                                'controller' => '\LeadersLinked\Controller\KnowledgeAreaController',
1254
                                'controller' => '\\LeadersLinked\\Controller\\KnowledgeAreaController',
1275
                                'action' => 'deleteReaction'
1255
                                'action' => 'deleteReaction',
1276
                            ]
1256
                            ],
1277
                        ]
1257
                        ],
1278
                    ]
1258
                    ],
1279
                ]
1259
                ],
1280
            ],
1260
            ],
1281
 
-
 
1282
            'backend' => [
1261
            'backend' => [
1283
                'type' => Literal::class,
1262
                'type' => Literal::class,
1284
                'options' => [
1263
                'options' => [
1285
                    'route' => '/backend',
1264
                    'route' => '/backend',
1286
                    'defaults' => [
1265
                    'defaults' => [
1287
                        'controller' => '\LeadersLinked\Controller\BackendController',
1266
                        'controller' => '\\LeadersLinked\\Controller\\BackendController',
1288
                        'action' => 'index'
1267
                        'action' => 'index',
1289
                    ]
1268
                    ],
1290
                ],
1269
                ],
1291
                'may_terminate' => true,
1270
                'may_terminate' => true,
1292
                'child_routes' => [
1271
                'child_routes' => [
1293
                    'signin-admin' => [
1272
                    'signin-admin' => [
1294
                        'type' => Literal::class,
1273
                        'type' => Literal::class,
1295
                        'options' => [
1274
                        'options' => [
1296
                            'route' => '/signin-admin',
1275
                            'route' => '/signin-admin',
1297
                            'defaults' => [
1276
                            'defaults' => [
1298
                                'controller' => '\LeadersLinked\Controller\BackendController',
1277
                                'controller' => '\\LeadersLinked\\Controller\\BackendController',
1299
                                'action' => 'signinAdmin'
1278
                                'action' => 'signinAdmin',
1300
                            ]
1279
                            ],
1301
                        ]
1280
                        ],
1302
                    ],
1281
                    ],
1303
                    'signin-company' => [
1282
                    'signin-company' => [
1304
                        'type' => Segment::class,
1283
                        'type' => Segment::class,
1305
                        'options' => [
1284
                        'options' => [
1306
                            'route' => '/signin-company/:id[/relational/:relational/type/:type]',
1285
                            'route' => '/signin-company/:id[/relational/:relational/type/:type]',
1307
                            'constraints' => [
1286
                            'constraints' => [
1308
                                'id' => '[A-Za-z0-9\-]+\=*',
1287
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1309
                                'relational' => '[A-Za-z0-9\-]+\=*',
1288
                                'relational' => '[A-Za-z0-9\\-]+\\=*',
1310
                                'type' => '[A-Za-z0-9\-]+\=*'
1289
                                'type' => '[A-Za-z0-9\\-]+\\=*',
1311
                            ],
1290
                            ],
1312
                            'defaults' => [
1291
                            'defaults' => [
1313
                                'controller' => '\LeadersLinked\Controller\BackendController',
1292
                                'controller' => '\\LeadersLinked\\Controller\\BackendController',
1314
                                'action' => 'signinCompany'
1293
                                'action' => 'signinCompany',
1315
                            ]
1294
                            ],
1316
                        ]
1295
                        ],
1317
                    ]
1296
                    ],
1318
                ]
1297
                ],
1319
            ],
1298
            ],
1320
            'dashboard' => [
1299
            'dashboard' => [
1321
                'type' => Segment::class,
1300
                'type' => Segment::class,
1322
                'options' => [
1301
                'options' => [
1323
                    'route' => '/dashboard[/feed/:feed][/post/:post]',
1302
                    'route' => '/dashboard[/feed/:feed][/post/:post]',
1324
                    'constraints' => [
1303
                    'constraints' => [
1325
                        'feed' => '[A-Za-z0-9\-]+\=*',
1304
                        'feed' => '[A-Za-z0-9\\-]+\\=*',
1326
                        'post' => '[A-Za-z0-9\-]+\=*'
1305
                        'post' => '[A-Za-z0-9\\-]+\\=*',
1327
                    ],
1306
                    ],
1328
                    'defaults' => [
1307
                    'defaults' => [
1329
                        'controller' => '\LeadersLinked\Controller\DashboardController',
1308
                        'controller' => '\\LeadersLinked\\Controller\\DashboardController',
1330
                        'action' => 'index'
1309
                        'action' => 'index',
1331
                    ]
1310
                    ],
1332
                ]
1311
                ],
1333
            ],
1312
            ],
1334
 
-
 
1335
            'paypal' => [
1313
            'paypal' => [
1336
                'type' => Literal::class,
1314
                'type' => Literal::class,
1337
                'options' => [
1315
                'options' => [
1338
                    'route' => '/paypal',
1316
                    'route' => '/paypal',
1339
                    'defaults' => [
1317
                    'defaults' => [
1340
                        'controller' => '\LeadersLinked\Controller\PaypalController',
1318
                        'controller' => '\\LeadersLinked\\Controller\\PaypalController',
1341
                        'action' => 'index'
1319
                        'action' => 'index',
1342
                    ]
1320
                    ],
1343
                ],
1321
                ],
1344
                'may_terminate' => true,
1322
                'may_terminate' => true,
1345
                'child_routes' => [
1323
                'child_routes' => [
1346
                    'success' => [
1324
                    'success' => [
1347
                        'type' => Literal::class,
1325
                        'type' => Literal::class,
1348
                        'options' => [
1326
                        'options' => [
1349
                            'route' => '/success',
1327
                            'route' => '/success',
1350
                            'defaults' => [
1328
                            'defaults' => [
1351
                                'controller' => '\LeadersLinked\Controller\PaypalController',
1329
                                'controller' => '\\LeadersLinked\\Controller\\PaypalController',
1352
                                'action' => 'success'
1330
                                'action' => 'success',
1353
                            ]
1331
                            ],
1354
                        ]
1332
                        ],
1355
                    ],
1333
                    ],
1356
                    'cancel' => [
1334
                    'cancel' => [
1357
                        'type' => Literal::class,
1335
                        'type' => Literal::class,
1358
                        'options' => [
1336
                        'options' => [
1359
                            'route' => '/cancel',
1337
                            'route' => '/cancel',
1360
                            'defaults' => [
1338
                            'defaults' => [
1361
                                'controller' => '\LeadersLinked\Controller\PaypalController',
1339
                                'controller' => '\\LeadersLinked\\Controller\\PaypalController',
1362
                                'action' => 'cancel'
1340
                                'action' => 'cancel',
1363
                            ]
1341
                            ],
1364
                        ]
1342
                        ],
1365
                    ]
1343
                    ],
1366
                ]
1344
                ],
1367
            ],
1345
            ],
1368
            'chat' => [
1346
            'chat' => [
1369
                'type' => Literal::class,
1347
                'type' => Literal::class,
1370
                'options' => [
1348
                'options' => [
1371
                    'route' => '/chat',
1349
                    'route' => '/chat',
1372
                    'defaults' => [
1350
                    'defaults' => [
1373
                        'controller' => '\LeadersLinked\Controller\ChatController',
1351
                        'controller' => '\\LeadersLinked\\Controller\\ChatController',
1374
                        'action' => 'index'
1352
                        'action' => 'index',
1375
                    ]
1353
                    ],
1376
                ],
1354
                ],
1377
                'may_terminate' => true,
1355
                'may_terminate' => true,
1378
                'child_routes' => [
1356
                'child_routes' => [
1379
                    // Inicio de los Routes del Chat //
-
 
1380
 
-
 
1381
                    'users' => [
1357
                    'users' => [
1382
                        'type' => Literal::class,
1358
                        'type' => Literal::class,
1383
                        'options' => [
1359
                        'options' => [
1384
                            'route' => '/users',
1360
                            'route' => '/users',
1385
                            'defaults' => [
1361
                            'defaults' => [
1386
                                'controller' => '\LeadersLinked\Controller\ChatController',
1362
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1387
                                'action' => 'users'
1363
                                'action' => 'users',
1388
                            ]
1364
                            ],
1389
                        ]
1365
                        ],
1390
                    ],
1366
                    ],
1391
 
-
 
1392
                    'heart-beat' => [
1367
                    'heart-beat' => [
1393
                        'type' => Literal::class,
1368
                        'type' => Literal::class,
1394
                        'options' => [
1369
                        'options' => [
1395
                            'route' => '/heart-beat',
1370
                            'route' => '/heart-beat',
1396
                            'defaults' => [
1371
                            'defaults' => [
1397
                                'controller' => '\LeadersLinked\Controller\ChatController',
1372
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1398
                                'action' => 'heartBeat'
1373
                                'action' => 'heartBeat',
1399
                            ]
1374
                            ],
1400
                        ]
1375
                        ],
1401
                    ],
1376
                    ],
1402
                    'create-group' => [
1377
                    'create-group' => [
1403
                        'type' => Literal::class,
1378
                        'type' => Literal::class,
1404
                        'options' => [
1379
                        'options' => [
1405
                            'route' => '/create-group',
1380
                            'route' => '/create-group',
1406
                            'defaults' => [
1381
                            'defaults' => [
1407
                                'controller' => '\LeadersLinked\Controller\ChatController',
1382
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1408
                                'action' => 'createGroup'
1383
                                'action' => 'createGroup',
1409
                            ]
1384
                            ],
1410
                        ]
1385
                        ],
1411
                    ],
1386
                    ],
1412
                    'zoom' => [
1387
                    'zoom' => [
1413
                        'type' => Segment::class,
1388
                        'type' => Segment::class,
1414
                        'options' => [
1389
                        'options' => [
1415
                            'route' => '/zoom/:id',
1390
                            'route' => '/zoom/:id',
1416
                            'constraints' => [
1391
                            'constraints' => [
1417
                                'id' => '[A-Za-z0-9\-]+\=*'
1392
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1418
                            ],
1393
                            ],
1419
                            'defaults' => [
1394
                            'defaults' => [
1420
                                'controller' => '\LeadersLinked\Controller\ChatController',
1395
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1421
                                'action' => 'zoom'
1396
                                'action' => 'zoom',
1422
                            ]
1397
                            ],
1423
                        ]
1398
                        ],
1424
                    ],
1399
                    ],
1425
                    'open-or-create' => [
1400
                    'open-or-create' => [
1426
                        'type' => Segment::class,
1401
                        'type' => Segment::class,
1427
                        'options' => [
1402
                        'options' => [
1428
                            'route' => '/open-or-create/:id',
1403
                            'route' => '/open-or-create/:id',
1429
                            'constraints' => [
1404
                            'constraints' => [
1430
                                'id' => '[A-Za-z0-9\-]+\=*'
1405
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1431
                            ],
1406
                            ],
1432
                            'defaults' => [
1407
                            'defaults' => [
1433
                                'controller' => '\LeadersLinked\Controller\ChatController',
1408
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1434
                                'action' => 'openOrCreate'
1409
                                'action' => 'openOrCreate',
1435
                            ]
1410
                            ],
1436
                        ]
1411
                        ],
1437
                    ],
1412
                    ],
1438
                    'add-user-to-group' => [
1413
                    'add-user-to-group' => [
1439
                        'type' => Segment::class,
1414
                        'type' => Segment::class,
1440
                        'options' => [
1415
                        'options' => [
1441
                            'route' => '/add-user-to-group/:group_id',
1416
                            'route' => '/add-user-to-group/:group_id',
1442
                            'constraints' => [
1417
                            'constraints' => [
1443
                                'group_id' => '[A-Za-z0-9\-]+\=*'
1418
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
1444
                            ],
1419
                            ],
1445
                            'defaults' => [
1420
                            'defaults' => [
1446
                                'controller' => '\LeadersLinked\Controller\ChatController',
1421
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1447
                                'action' => 'addUserToGroup'
1422
                                'action' => 'addUserToGroup',
1448
                            ]
1423
                            ],
1449
                        ]
1424
                        ],
1450
                    ],
1425
                    ],
1451
                    'mark-seen' => [
1426
                    'mark-seen' => [
1452
                        'type' => Segment::class,
1427
                        'type' => Segment::class,
1453
                        'options' => [
1428
                        'options' => [
1454
                            'route' => '/mark-seen/:id',
1429
                            'route' => '/mark-seen/:id',
1455
                            'constraints' => [
1430
                            'constraints' => [
1456
                                'id' => '[A-Za-z0-9\-]+\=*'
1431
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1457
                            ],
1432
                            ],
1458
                            'defaults' => [
1433
                            'defaults' => [
1459
                                'controller' => '\LeadersLinked\Controller\ChatController',
1434
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1460
                                'action' => 'markSeen'
1435
                                'action' => 'markSeen',
1461
                            ]
1436
                            ],
1462
                        ]
1437
                        ],
1463
                    ],
1438
                    ],
1464
                    'mark-received' => [
1439
                    'mark-received' => [
1465
                        'type' => Segment::class,
1440
                        'type' => Segment::class,
1466
                        'options' => [
1441
                        'options' => [
1467
                            'route' => '/mark-received/:id',
1442
                            'route' => '/mark-received/:id',
1468
                            'constraints' => [
1443
                            'constraints' => [
1469
                                'id' => '[A-Za-z0-9\-]+\=*'
1444
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1470
                            ],
1445
                            ],
1471
                            'defaults' => [
1446
                            'defaults' => [
1472
                                'controller' => '\LeadersLinked\Controller\ChatController',
1447
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1473
                                'action' => 'markReceived'
1448
                                'action' => 'markReceived',
1474
                            ]
1449
                            ],
1475
                        ]
1450
                        ],
1476
                    ],
1451
                    ],
1477
                    'remove-user-from-group' => [
1452
                    'remove-user-from-group' => [
1478
                        'type' => Segment::class,
1453
                        'type' => Segment::class,
1479
                        'options' => [
1454
                        'options' => [
1480
                            'route' => '/remove-user-from-group/:group_id/:user_id',
1455
                            'route' => '/remove-user-from-group/:group_id/:user_id',
1481
                            'constraints' => [
1456
                            'constraints' => [
1482
                                'group_id' => '[A-Za-z0-9\-]+\=*',
1457
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
1483
                                'user_id' => '[A-Za-z0-9\-]+\=*'
1458
                                'user_id' => '[A-Za-z0-9\\-]+\\=*',
1484
                            ],
1459
                            ],
1485
                            'defaults' => [
1460
                            'defaults' => [
1486
                                'controller' => '\LeadersLinked\Controller\ChatController',
1461
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1487
                                'action' => 'removeUserFromGroup'
1462
                                'action' => 'removeUserFromGroup',
1488
                            ]
1463
                            ],
1489
                        ]
1464
                        ],
1490
                    ],
1465
                    ],
1491
                    'get-all-messages' => [
1466
                    'get-all-messages' => [
1492
                        'type' => Segment::class,
1467
                        'type' => Segment::class,
1493
                        'options' => [
1468
                        'options' => [
1494
                            'route' => '/get-all-messages/:id',
1469
                            'route' => '/get-all-messages/:id',
1495
                            'constraints' => [
1470
                            'constraints' => [
1496
                                'id' => '[A-Za-z0-9\-]+\=*'
1471
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1497
                            ],
1472
                            ],
1498
                            'defaults' => [
1473
                            'defaults' => [
1499
                                'controller' => '\LeadersLinked\Controller\ChatController',
1474
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1500
                                'action' => 'getAllMessages'
1475
                                'action' => 'getAllMessages',
1501
                            ]
1476
                            ],
1502
                        ]
1477
                        ],
1503
                    ],
1478
                    ],
1504
                    'send' => [
1479
                    'send' => [
1505
                        'type' => Segment::class,
1480
                        'type' => Segment::class,
1506
                        'options' => [
1481
                        'options' => [
1507
                            'route' => '/send/:id',
1482
                            'route' => '/send/:id',
1508
                            'constraints' => [
1483
                            'constraints' => [
1509
                                'id' => '[A-Za-z0-9\-]+\=*'
1484
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1510
                            ],
1485
                            ],
1511
                            'defaults' => [
1486
                            'defaults' => [
1512
                                'controller' => '\LeadersLinked\Controller\ChatController',
1487
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1513
                                'action' => 'send'
1488
                                'action' => 'send',
1514
                            ]
1489
                            ],
1515
                        ]
1490
                        ],
1516
                    ],
1491
                    ],
1517
                    'get-contacts-availables-for-group' => [
1492
                    'get-contacts-availables-for-group' => [
1518
                        'type' => Segment::class,
1493
                        'type' => Segment::class,
1519
                        'options' => [
1494
                        'options' => [
1520
                            'route' => '/get-contacts-availables-for-group/:group_id',
1495
                            'route' => '/get-contacts-availables-for-group/:group_id',
1521
                            'constraints' => [
1496
                            'constraints' => [
1522
                                'group_id' => '[A-Za-z0-9\-]+\=*'
1497
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
1523
                            ],
1498
                            ],
1524
                            'defaults' => [
1499
                            'defaults' => [
1525
                                'controller' => '\LeadersLinked\Controller\ChatController',
1500
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1526
                                'action' => 'contactAvailableGroupList'
1501
                                'action' => 'contactAvailableGroupList',
1527
                            ]
1502
                            ],
1528
                        ]
1503
                        ],
1529
                    ],
1504
                    ],
1530
                    'get-contact-group-list' => [
1505
                    'get-contact-group-list' => [
1531
                        'type' => Segment::class,
1506
                        'type' => Segment::class,
1532
                        'options' => [
1507
                        'options' => [
1533
                            'route' => '/get-contact-group-list/:group_id',
1508
                            'route' => '/get-contact-group-list/:group_id',
1534
                            'constraints' => [
1509
                            'constraints' => [
1535
                                'group_id' => '[A-Za-z0-9\-]+\=*'
1510
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
1536
                            ],
1511
                            ],
1537
                            'defaults' => [
1512
                            'defaults' => [
1538
                                'controller' => '\LeadersLinked\Controller\ChatController',
1513
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1539
                                'action' => 'contactGroupList'
1514
                                'action' => 'contactGroupList',
1540
                            ]
1515
                            ],
1541
                        ]
1516
                        ],
1542
                    ],
1517
                    ],
1543
                    'leave-group' => [
1518
                    'leave-group' => [
1544
                        'type' => Segment::class,
1519
                        'type' => Segment::class,
1545
                        'options' => [
1520
                        'options' => [
1546
                            'route' => '/leave-group/:group_id',
1521
                            'route' => '/leave-group/:group_id',
1547
                            'constraints' => [
1522
                            'constraints' => [
1548
                                'group_id' => '[A-Za-z0-9\-]+\=*'
1523
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
1549
                            ],
1524
                            ],
1550
                            'defaults' => [
1525
                            'defaults' => [
1551
                                'controller' => '\LeadersLinked\Controller\ChatController',
1526
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1552
                                'action' => 'leaveGroup'
1527
                                'action' => 'leaveGroup',
1553
                            ]
1528
                            ],
1554
                        ]
1529
                        ],
1555
                    ],
1530
                    ],
1556
                    'delete-group' => [
1531
                    'delete-group' => [
1557
                        'type' => Segment::class,
1532
                        'type' => Segment::class,
1558
                        'options' => [
1533
                        'options' => [
1559
                            'route' => '/delete-group/:group_id',
1534
                            'route' => '/delete-group/:group_id',
1560
                            'constraints' => [
1535
                            'constraints' => [
1561
                                'group_id' => '[A-Za-z0-9\-]+\=*'
1536
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
1562
                            ],
1537
                            ],
1563
                            'defaults' => [
1538
                            'defaults' => [
1564
                                'controller' => '\LeadersLinked\Controller\ChatController',
1539
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1565
                                'action' => 'deleteGroup'
1540
                                'action' => 'deleteGroup',
1566
                            ]
1541
                            ],
1567
                        ]
1542
                        ],
1568
                    ],
1543
                    ],
1569
                    'open' => [
1544
                    'open' => [
1570
                        'type' => Segment::class,
1545
                        'type' => Segment::class,
1571
                        'options' => [
1546
                        'options' => [
1572
                            'route' => '/open/:id',
1547
                            'route' => '/open/:id',
1573
                            'constraints' => [
1548
                            'constraints' => [
1574
                                'id' => '[A-Za-z0-9\-]+\=*'
1549
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1575
                            ],
1550
                            ],
1576
                            'defaults' => [
1551
                            'defaults' => [
1577
                                'controller' => '\LeadersLinked\Controller\ChatController',
1552
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1578
                                'action' => 'open'
1553
                                'action' => 'open',
1579
                            ]
1554
                            ],
1580
                        ]
1555
                        ],
1581
                    ],
1556
                    ],
1582
                    'close' => [
1557
                    'close' => [
1583
                        'type' => Segment::class,
1558
                        'type' => Segment::class,
1584
                        'options' => [
1559
                        'options' => [
1585
                            'route' => '/close/:id',
1560
                            'route' => '/close/:id',
1586
                            'constraints' => [
1561
                            'constraints' => [
1587
                                'id' => '[A-Za-z0-9\-]+\=*'
1562
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1588
                            ],
1563
                            ],
1589
                            'defaults' => [
1564
                            'defaults' => [
1590
                                'controller' => '\LeadersLinked\Controller\ChatController',
1565
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1591
                                'action' => 'close'
1566
                                'action' => 'close',
1592
                            ]
1567
                            ],
1593
                        ]
1568
                        ],
1594
                    ],
1569
                    ],
1595
                    'clear' => [
1570
                    'clear' => [
1596
                        'type' => Segment::class,
1571
                        'type' => Segment::class,
1597
                        'options' => [
1572
                        'options' => [
1598
                            'route' => '/clear/:id',
1573
                            'route' => '/clear/:id',
1599
                            'constraints' => [
1574
                            'constraints' => [
1600
                                'id' => '[A-Za-z0-9\-]+\=*'
1575
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1601
                            ],
1576
                            ],
1602
                            'defaults' => [
1577
                            'defaults' => [
1603
                                'controller' => '\LeadersLinked\Controller\ChatController',
1578
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1604
                                'action' => 'clear'
1579
                                'action' => 'clear',
1605
                            ]
1580
                            ],
1606
                        ]
1581
                        ],
1607
                    ],
1582
                    ],
1608
                    'upload' => [
1583
                    'upload' => [
1609
                        'type' => Segment::class,
1584
                        'type' => Segment::class,
1610
                        'options' => [
1585
                        'options' => [
1611
                            'route' => '/upload/:id',
1586
                            'route' => '/upload/:id',
1612
                            'constraints' => [
1587
                            'constraints' => [
1613
                                'id' => '[A-Za-z0-9\-]+\=*'
1588
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1614
                            ],
1589
                            ],
1615
                            'defaults' => [
1590
                            'defaults' => [
1616
                                'controller' => '\LeadersLinked\Controller\ChatController',
1591
                                'controller' => '\\LeadersLinked\\Controller\\ChatController',
1617
                                'action' => 'upload'
1592
                                'action' => 'upload',
1618
                            ]
1593
                            ],
1619
                        ]
1594
                        ],
1620
                    ]
1595
                    ],
1621
                ]
1596
                ],
1622
            ],
1597
            ],
1623
            'calendar' => [
1598
            'calendar' => [
1624
                'type' => Literal::class,
1599
                'type' => Literal::class,
1625
                'options' => [
1600
                'options' => [
1626
                    'route' => '/calendar',
1601
                    'route' => '/calendar',
1627
                    'defaults' => [
1602
                    'defaults' => [
1628
                        'controller' => '\LeadersLinked\Controller\CalendarController',
1603
                        'controller' => '\\LeadersLinked\\Controller\\CalendarController',
1629
                        'action' => 'index'
1604
                        'action' => 'index',
1630
                    ]
1605
                    ],
1631
                ],
1606
                ],
1632
                'may_terminate' => true,
1607
                'may_terminate' => true,
1633
                'child_routes' => [
1608
                'child_routes' => [
1634
                    'events' => [
1609
                    'events' => [
1635
                        'type' => Segment::class,
1610
                        'type' => Segment::class,
1636
                        'options' => [
1611
                        'options' => [
1637
                            'route' => '/events',
1612
                            'route' => '/events',
1638
                            /*'constraints' => [
1613
                            /*'constraints' => [
1639
                                'id' => '[A-Za-z0-9\-]+\=*',
1614
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1640
                            ],*/
1615
                            ],*/
1641
                            'defaults' => [
1616
                            'defaults' => [
1642
                                'controller' => '\LeadersLinked\Controller\CalendarController',
1617
                                'controller' => '\\LeadersLinked\\Controller\\CalendarController',
1643
                                'action' => 'events'
1618
                                'action' => 'events',
1644
                            ]
1619
                            ],
1645
                        ]
1620
                        ],
1646
                    ]
1621
                    ],
1647
                ]
1622
                ],
1648
            ],
1623
            ],
1649
 
-
 
1650
            /*
1624
            /*
1651
            'zoom' => [
1625
            'zoom' => [
1652
                'type' => Literal::class,
1626
                'type' => Literal::class,
1653
                'options' => [
1627
                'options' => [
1654
                    'route' => '/zoom',
1628
                    'route' => '/zoom',
1655
                    'defaults' => [
1629
                    'defaults' => [
1656
                        'controller' => '\LeadersLinked\Controller\ZoomController',
1630
                        'controller' => '\\LeadersLinked\\Controller\\ZoomController',
1657
                        'action' => 'index'
1631
                        'action' => 'index'
1658
                    ]
1632
                    ]
1659
                ],
1633
                ],
1660
                'may_terminate' => true,
1634
                'may_terminate' => true,
1661
                'child_routes' => [
1635
                'child_routes' => [
1662
                    'add' => [
1636
                    'add' => [
1663
                        'type' => Literal::class,
1637
                        'type' => Literal::class,
1664
                        'options' => [
1638
                        'options' => [
1665
                            'route' => '/add',
1639
                            'route' => '/add',
1666
                            'defaults' => [
1640
                            'defaults' => [
1667
                                'controller' => '\LeadersLinked\Controller\ZoomController',
1641
                                'controller' => '\\LeadersLinked\\Controller\\ZoomController',
1668
                                'action' => 'add'
1642
                                'action' => 'add'
1669
                            ]
1643
                            ]
1670
                        ]
1644
                        ]
1671
                    ],
1645
                    ],
1672
                    'delete' => [
1646
                    'delete' => [
1673
                        'type' => Segment::class,
1647
                        'type' => Segment::class,
1674
                        'options' => [
1648
                        'options' => [
1675
                            'route' => '/delete/:id',
1649
                            'route' => '/delete/:id',
1676
                            'constraints' => [
1650
                            'constraints' => [
1677
                                'id' => '[A-Za-z0-9\-]+\=*',
1651
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1678
                            ],
1652
                            ],
1679
                            'defaults' => [
1653
                            'defaults' => [
1680
                                'controller' => '\LeadersLinked\Controller\ZoomController',
1654
                                'controller' => '\\LeadersLinked\\Controller\\ZoomController',
1681
                                'action' => 'delete'
1655
                                'action' => 'delete'
1682
                            ]
1656
                            ]
1683
                        ]
1657
                        ]
1684
                    ],
1658
                    ],
1685
                    'listing' => [
1659
                    'listing' => [
1686
                        'type' => Literal::class,
1660
                        'type' => Literal::class,
1687
                        'options' => [
1661
                        'options' => [
1688
                            'route' => '/listing',
1662
                            'route' => '/listing',
1689
                            'defaults' => [
1663
                            'defaults' => [
1690
                                'controller' => '\LeadersLinked\Controller\ZoomController',
1664
                                'controller' => '\\LeadersLinked\\Controller\\ZoomController',
1691
                                'action' => 'listing'
1665
                                'action' => 'listing'
1692
                            ]
1666
                            ]
1693
                        ]
1667
                        ]
1694
                    ],
1668
                    ],
1695
                ]    
1669
                ]
1696
            ],*/
1670
            ],*/
1697
 
-
 
1698
            'inmail' => [
1671
            'inmail' => [
1699
                'type' => Literal::class,
1672
                'type' => Literal::class,
1700
                'options' => [
1673
                'options' => [
1701
                    'route' => '/inmail',
1674
                    'route' => '/inmail',
1702
                    'defaults' => [
1675
                    'defaults' => [
1703
                        'controller' => '\LeadersLinked\Controller\InMailController',
1676
                        'controller' => '\\LeadersLinked\\Controller\\InMailController',
1704
                        'action' => 'index'
1677
                        'action' => 'index',
1705
                    ]
1678
                    ],
1706
                ],
1679
                ],
1707
                'may_terminate' => true,
1680
                'may_terminate' => true,
1708
                'child_routes' => [
1681
                'child_routes' => [
1709
                    'user' => [
1682
                    'user' => [
1710
                        'type' => Literal::class,
1683
                        'type' => Literal::class,
1711
                        'options' => [
1684
                        'options' => [
1712
                            'route' => '/user',
1685
                            'route' => '/user',
1713
                            'defaults' => [
1686
                            'defaults' => [
1714
                                'controller' => '\LeadersLinked\Controller\InMailController',
1687
                                'controller' => '\\LeadersLinked\\Controller\\InMailController',
1715
                                'action' => 'users'
1688
                                'action' => 'users',
1716
                            ]
1689
                            ],
1717
                        ],
1690
                        ],
1718
                        'may_terminate' => true,
1691
                        'may_terminate' => true,
1719
                        'child_routes' => [
1692
                        'child_routes' => [
1720
                            'block' => [
1693
                            'block' => [
1721
                                'type' => Segment::class,
1694
                                'type' => Segment::class,
1722
                                'options' => [
1695
                                'options' => [
1723
                                    'route' => '/block/:id',
1696
                                    'route' => '/block/:id',
1724
                                    'constraints' => [
1697
                                    'constraints' => [
1725
                                        'id' => '[A-Za-z0-9\-]+\=*'
1698
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
1726
                                    ],
1699
                                    ],
1727
                                    'defaults' => [
1700
                                    'defaults' => [
1728
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1701
                                        'controller' => '\\LeadersLinked\\Controller\\InMailController',
1729
                                        'action' => 'blockUser'
1702
                                        'action' => 'blockUser',
1730
                                    ]
1703
                                    ],
1731
                                ]
1704
                                ],
1732
                            ]
1705
                            ],
1733
                        ]
1706
                        ],
1734
                    ],
1707
                    ],
1735
                    'message' => [
1708
                    'message' => [
1736
                        'type' => Literal::class,
1709
                        'type' => Literal::class,
1737
                        'options' => [
1710
                        'options' => [
1738
                            'route' => '/message',
1711
                            'route' => '/message',
1739
                            'defaults' => [
1712
                            'defaults' => [
1740
                                'controller' => '\LeadersLinked\Controller\InMailController',
1713
                                'controller' => '\\LeadersLinked\\Controller\\InMailController',
1741
                                'action' => 'message'
1714
                                'action' => 'message',
1742
                            ]
1715
                            ],
1743
                        ],
1716
                        ],
1744
                        'may_terminate' => true,
1717
                        'may_terminate' => true,
1745
                        'child_routes' => [
1718
                        'child_routes' => [
1746
                            'send' => [
1719
                            'send' => [
1747
                                'type' => Segment::class,
1720
                                'type' => Segment::class,
1748
                                'options' => [
1721
                                'options' => [
1749
                                    'route' => '/send/:id',
1722
                                    'route' => '/send/:id',
1750
                                    'constraints' => [
1723
                                    'constraints' => [
1751
                                        'id' => '[A-Za-z0-9\-]+\=*'
1724
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
1752
                                    ],
1725
                                    ],
1753
                                    'defaults' => [
1726
                                    'defaults' => [
1754
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1727
                                        'controller' => '\\LeadersLinked\\Controller\\InMailController',
1755
                                        'action' => 'sendMessage'
1728
                                        'action' => 'sendMessage',
1756
                                    ]
1729
                                    ],
1757
                                ]
1730
                                ],
1758
                            ],
1731
                            ],
1759
                            'delete' => [
1732
                            'delete' => [
1760
                                'type' => Segment::class,
1733
                                'type' => Segment::class,
1761
                                'options' => [
1734
                                'options' => [
1762
                                    'route' => '/delete/:id',
1735
                                    'route' => '/delete/:id',
1763
                                    'constraints' => [
1736
                                    'constraints' => [
1764
                                        'id' => '[0-9]+'
1737
                                        'id' => '[0-9]+',
1765
                                    ],
1738
                                    ],
1766
                                    'defaults' => [
1739
                                    'defaults' => [
1767
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1740
                                        'controller' => '\\LeadersLinked\\Controller\\InMailController',
1768
                                        'action' => 'deleteMessage'
1741
                                        'action' => 'deleteMessage',
1769
                                    ]
1742
                                    ],
1770
                                ]
1743
                                ],
1771
                            ],
1744
                            ],
1772
                            'get' => [
1745
                            'get' => [
1773
                                'type' => Segment::class,
1746
                                'type' => Segment::class,
1774
                                'options' => [
1747
                                'options' => [
1775
                                    'route' => '/get/:id',
1748
                                    'route' => '/get/:id',
1776
                                    'constraints' => [
1749
                                    'constraints' => [
1777
                                        'id' => '[0-9]+'
1750
                                        'id' => '[0-9]+',
1778
                                    ],
1751
                                    ],
1779
                                    'defaults' => [
1752
                                    'defaults' => [
1780
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1753
                                        'controller' => '\\LeadersLinked\\Controller\\InMailController',
1781
                                        'action' => 'getMessage'
1754
                                        'action' => 'getMessage',
1782
                                    ]
1755
                                    ],
1783
                                ]
1756
                                ],
1784
                            ],
1757
                            ],
1785
                            'attachment' => [
1758
                            'attachment' => [
1786
                                'type' => Segment::class,
1759
                                'type' => Segment::class,
1787
                                'options' => [
1760
                                'options' => [
1788
                                    'route' => '/attachment/:id/:attachment',
1761
                                    'route' => '/attachment/:id/:attachment',
1789
                                    'constraints' => [
1762
                                    'constraints' => [
1790
                                        'id' => '[0-9]+',
1763
                                        'id' => '[0-9]+',
1791
                                        'attachment' => '[0-9]+'
1764
                                        'attachment' => '[0-9]+',
1792
                                    ],
1765
                                    ],
1793
                                    'defaults' => [
1766
                                    'defaults' => [
1794
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1767
                                        'controller' => '\\LeadersLinked\\Controller\\InMailController',
1795
                                        'action' => 'getAttachment'
1768
                                        'action' => 'getAttachment',
1796
                                    ]
1769
                                    ],
1797
                                ]
1770
                                ],
1798
                            ]
1771
                            ],
1799
                        ]
1772
                        ],
1800
                    ]
1773
                    ],
1801
                ]
1774
                ],
1802
            ],
1775
            ],
1803
            'connection' => [
1776
            'connection' => [
1804
                'type' => Literal::class,
1777
                'type' => Literal::class,
1805
                'options' => [
1778
                'options' => [
1806
                    'route' => '/connection',
1779
                    'route' => '/connection',
1807
                    'defaults' => [
1780
                    'defaults' => [
1808
                        'controller' => '\LeadersLinked\Controller\ConnectionController',
1781
                        'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1809
                        'action' => 'index'
1782
                        'action' => 'index',
1810
                    ]
1783
                    ],
1811
                ],
1784
                ],
1812
                'may_terminate' => true,
1785
                'may_terminate' => true,
1813
                'child_routes' => [
1786
                'child_routes' => [
1814
                    'my-connections' => [
1787
                    'my-connections' => [
1815
                        'type' => Literal::class,
1788
                        'type' => Literal::class,
1816
                        'options' => [
1789
                        'options' => [
1817
                            'route' => '/my-connections',
1790
                            'route' => '/my-connections',
1818
                            'defaults' => [
1791
                            'defaults' => [
1819
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1792
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1820
                                'action' => 'myConnections'
1793
                                'action' => 'myConnections',
1821
                            ]
1794
                            ],
1822
                        ]
1795
                        ],
1823
                    ],
1796
                    ],
1824
                    'people-you-may-know' => [
1797
                    'people-you-may-know' => [
1825
                        'type' => Literal::class,
1798
                        'type' => Literal::class,
1826
                        'options' => [
1799
                        'options' => [
1827
                            'route' => '/people-you-may-know',
1800
                            'route' => '/people-you-may-know',
1828
                            'defaults' => [
1801
                            'defaults' => [
1829
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1802
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1830
                                'action' => 'peopleYouMayKnow'
1803
                                'action' => 'peopleYouMayKnow',
1831
                            ]
1804
                            ],
1832
                        ]
1805
                        ],
1833
                    ],
1806
                    ],
1834
                    'people-blocked' => [
1807
                    'people-blocked' => [
1835
                        'type' => Literal::class,
1808
                        'type' => Literal::class,
1836
                        'options' => [
1809
                        'options' => [
1837
                            'route' => '/people-blocked',
1810
                            'route' => '/people-blocked',
1838
                            'defaults' => [
1811
                            'defaults' => [
1839
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1812
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1840
                                'action' => 'peopleBlocked'
1813
                                'action' => 'peopleBlocked',
1841
                            ]
1814
                            ],
1842
                        ]
1815
                        ],
1843
                    ],
1816
                    ],
1844
                    'invitations-sent' => [
1817
                    'invitations-sent' => [
1845
                        'type' => Literal::class,
1818
                        'type' => Literal::class,
1846
                        'options' => [
1819
                        'options' => [
1847
                            'route' => '/invitations-sent',
1820
                            'route' => '/invitations-sent',
1848
                            'defaults' => [
1821
                            'defaults' => [
1849
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1822
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1850
                                'action' => 'invitationsSent'
1823
                                'action' => 'invitationsSent',
1851
                            ]
1824
                            ],
1852
                        ]
1825
                        ],
1853
                    ],
1826
                    ],
1854
                    'invitations-received' => [
1827
                    'invitations-received' => [
1855
                        'type' => Literal::class,
1828
                        'type' => Literal::class,
1856
                        'options' => [
1829
                        'options' => [
1857
                            'route' => '/invitations-received',
1830
                            'route' => '/invitations-received',
1858
                            'defaults' => [
1831
                            'defaults' => [
1859
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1832
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1860
                                'action' => 'invitationsReceived'
1833
                                'action' => 'invitationsReceived',
1861
                            ]
1834
                            ],
1862
                        ]
1835
                        ],
1863
                    ],
1836
                    ],
1864
                    'block' => [
1837
                    'block' => [
1865
                        'type' => Segment::class,
1838
                        'type' => Segment::class,
1866
                        'options' => [
1839
                        'options' => [
1867
                            'route' => '/block/:id',
1840
                            'route' => '/block/:id',
1868
                            'constraints' => [
1841
                            'constraints' => [
1869
                                'id' => '[A-Za-z0-9\-]+\=*'
1842
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1870
                            ],
1843
                            ],
1871
                            'defaults' => [
1844
                            'defaults' => [
1872
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1845
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1873
                                'action' => 'block'
1846
                                'action' => 'block',
1874
                            ]
1847
                            ],
1875
                        ]
1848
                        ],
1876
                    ],
1849
                    ],
1877
                    'unblock' => [
1850
                    'unblock' => [
1878
                        'type' => Segment::class,
1851
                        'type' => Segment::class,
1879
                        'options' => [
1852
                        'options' => [
1880
                            'route' => '/unblock/:id',
1853
                            'route' => '/unblock/:id',
1881
                            'constraints' => [
1854
                            'constraints' => [
1882
                                'id' => '[A-Za-z0-9\-]+\=*'
1855
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1883
                            ],
1856
                            ],
1884
                            'defaults' => [
1857
                            'defaults' => [
1885
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1858
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1886
                                'action' => 'unblock'
1859
                                'action' => 'unblock',
1887
                            ]
1860
                            ],
1888
                        ]
1861
                        ],
1889
                    ],
1862
                    ],
1890
                    'cancel' => [
1863
                    'cancel' => [
1891
                        'type' => Segment::class,
1864
                        'type' => Segment::class,
1892
                        'options' => [
1865
                        'options' => [
1893
                            'route' => '/cancel/:id',
1866
                            'route' => '/cancel/:id',
1894
                            'constraints' => [
1867
                            'constraints' => [
1895
                                'id' => '[A-Za-z0-9\-]+\=*'
1868
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1896
                            ],
1869
                            ],
1897
                            'defaults' => [
1870
                            'defaults' => [
1898
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1871
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1899
                                'action' => 'cancel'
1872
                                'action' => 'cancel',
1900
                            ]
1873
                            ],
1901
                        ]
1874
                        ],
1902
                    ],
1875
                    ],
1903
                    'request' => [
1876
                    'request' => [
1904
                        'type' => Segment::class,
1877
                        'type' => Segment::class,
1905
                        'options' => [
1878
                        'options' => [
1906
                            'route' => '/request/:id',
1879
                            'route' => '/request/:id',
1907
                            'constraints' => [
1880
                            'constraints' => [
1908
                                'id' => '[A-Za-z0-9\-]+\=*'
1881
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1909
                            ],
1882
                            ],
1910
                            'defaults' => [
1883
                            'defaults' => [
1911
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1884
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1912
                                'action' => 'request'
1885
                                'action' => 'request',
1913
                            ]
1886
                            ],
1914
                        ]
1887
                        ],
1915
                    ],
1888
                    ],
1916
                    'approve' => [
1889
                    'approve' => [
1917
                        'type' => Segment::class,
1890
                        'type' => Segment::class,
1918
                        'options' => [
1891
                        'options' => [
1919
                            'route' => '/approve/:id',
1892
                            'route' => '/approve/:id',
1920
                            'constraints' => [
1893
                            'constraints' => [
1921
                                'id' => '[A-Za-z0-9\-]+\=*'
1894
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1922
                            ],
1895
                            ],
1923
                            'defaults' => [
1896
                            'defaults' => [
1924
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1897
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1925
                                'action' => 'approve'
1898
                                'action' => 'approve',
1926
                            ]
1899
                            ],
1927
                        ]
1900
                        ],
1928
                    ],
1901
                    ],
1929
                    'reject' => [
1902
                    'reject' => [
1930
                        'type' => Segment::class,
1903
                        'type' => Segment::class,
1931
                        'options' => [
1904
                        'options' => [
1932
                            'route' => '/reject/:id',
1905
                            'route' => '/reject/:id',
1933
                            'constraints' => [
1906
                            'constraints' => [
1934
                                'id' => '[A-Za-z0-9\-]+\=*'
1907
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1935
                            ],
1908
                            ],
1936
                            'defaults' => [
1909
                            'defaults' => [
1937
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1910
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1938
                                'action' => 'reject'
1911
                                'action' => 'reject',
1939
                            ]
1912
                            ],
1940
                        ]
1913
                        ],
1941
                    ],
1914
                    ],
1942
                    'delete' => [
1915
                    'delete' => [
1943
                        'type' => Segment::class,
1916
                        'type' => Segment::class,
1944
                        'options' => [
1917
                        'options' => [
1945
                            'route' => '/delete/:id',
1918
                            'route' => '/delete/:id',
1946
                            'constraints' => [
1919
                            'constraints' => [
1947
                                'id' => '[A-Za-z0-9\-]+\=*'
1920
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1948
                            ],
1921
                            ],
1949
                            'defaults' => [
1922
                            'defaults' => [
1950
                                'controller' => '\LeadersLinked\Controller\ConnectionController',
1923
                                'controller' => '\\LeadersLinked\\Controller\\ConnectionController',
1951
                                'action' => 'delete'
1924
                                'action' => 'delete',
1952
                            ]
1925
                            ],
1953
                        ]
1926
                        ],
1954
                    ]
1927
                    ],
1955
                ]
1928
                ],
1956
            ],
1929
            ],
1957
            'feed' => [
1930
            'feed' => [
1958
                'type' => Literal::class,
1931
                'type' => Literal::class,
1959
                'options' => [
1932
                'options' => [
1960
                    'route' => '/feed',
1933
                    'route' => '/feed',
1961
                    'defaults' => [
1934
                    'defaults' => [
1962
                        'controller' => '\LeadersLinked\Controller\FeedController',
1935
                        'controller' => '\\LeadersLinked\\Controller\\FeedController',
1963
                        'action' => 'index'
1936
                        'action' => 'index',
1964
                    ]
1937
                    ],
1965
                ],
1938
                ],
1966
                'may_terminate' => true,
1939
                'may_terminate' => true,
1967
                'child_routes' => [
1940
                'child_routes' => [
1968
                    'timeline' => [
1941
                    'timeline' => [
1969
                        'type' => Segment::class,
1942
                        'type' => Segment::class,
1970
                        'options' => [
1943
                        'options' => [
1971
                            'route' => '/timeline/:id/:type[/feed/:feed]',
1944
                            'route' => '/timeline/:id/:type[/feed/:feed]',
1972
                            'constraints' => [
1945
                            'constraints' => [
1973
                                'id' => '[A-Za-z0-9\-]+\=*',
1946
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1974
                                'type' => 'user|company|group'
1947
                                'type' => 'user|company|group',
1975
                            ],
1948
                            ],
1976
                            'defaults' => [
1949
                            'defaults' => [
1977
                                'controller' => '\LeadersLinked\Controller\FeedController',
1950
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
1978
                                'action' => 'timeline'
1951
                                'action' => 'timeline',
1979
                            ]
1952
                            ],
1980
                        ]
1953
                        ],
1981
                    ],
1954
                    ],
1982
                    'delete' => [
1955
                    'delete' => [
1983
                        'type' => Segment::class,
1956
                        'type' => Segment::class,
1984
                        'options' => [
1957
                        'options' => [
1985
                            'route' => '/delete/:id',
1958
                            'route' => '/delete/:id',
1986
                            'constraints' => [
1959
                            'constraints' => [
1987
                                'id' => '[A-Za-z0-9\-]+\=*'
1960
                                'id' => '[A-Za-z0-9\\-]+\\=*',
1988
                            ],
1961
                            ],
1989
                            'defaults' => [
1962
                            'defaults' => [
1990
                                'controller' => '\LeadersLinked\Controller\FeedController',
1963
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
1991
                                'action' => 'delete'
1964
                                'action' => 'delete',
1992
                            ]
1965
                            ],
1993
                        ]
1966
                        ],
1994
                    ],
1967
                    ],
1995
                    'reactions' => [
1968
                    'reactions' => [
1996
                        'type' => Segment::class,
1969
                        'type' => Segment::class,
1997
                        'options' => [
1970
                        'options' => [
1998
                            'route' => '/reactions/:id',
1971
                            'route' => '/reactions/:id',
1999
                            'constraints' => [
1972
                            'constraints' => [
2000
                                'id' => '[A-Za-z0-9\-]+\=*'
1973
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2001
                            ],
1974
                            ],
2002
                            'defaults' => [
1975
                            'defaults' => [
2003
                                'controller' => '\LeadersLinked\Controller\FeedController',
1976
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
2004
                                'action' => 'reactions'
1977
                                'action' => 'reactions',
2005
                            ]
1978
                            ],
2006
                        ]
1979
                        ],
2007
                    ],
1980
                    ],
2008
                    'comment' => [
1981
                    'comment' => [
2009
                        'type' => Segment::class,
1982
                        'type' => Segment::class,
2010
                        'options' => [
1983
                        'options' => [
2011
                            'route' => '/comment/:id',
1984
                            'route' => '/comment/:id',
2012
                            'constraints' => [
1985
                            'constraints' => [
2013
                                'id' => '[A-Za-z0-9\-]+\=*'
1986
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2014
                            ],
1987
                            ],
2015
                            'defaults' => [
1988
                            'defaults' => [
2016
                                'controller' => '\LeadersLinked\Controller\FeedController',
1989
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
2017
                                'action' => 'comment'
1990
                                'action' => 'comment',
2018
                            ]
1991
                            ],
2019
                        ],
1992
                        ],
2020
                        'may_terminate' => true,
1993
                        'may_terminate' => true,
2021
                        'child_routes' => [
1994
                        'child_routes' => [
2022
                            'delete' => [
1995
                            'delete' => [
2023
                                'type' => Segment::class,
1996
                                'type' => Segment::class,
2024
                                'options' => [
1997
                                'options' => [
2025
                                    'route' => '/delete/:comment',
1998
                                    'route' => '/delete/:comment',
2026
                                    'constraints' => [
1999
                                    'constraints' => [
2027
                                        'comment' => '[A-Za-z0-9\-]+\=*'
2000
                                        'comment' => '[A-Za-z0-9\\-]+\\=*',
2028
                                    ],
2001
                                    ],
2029
                                    'defaults' => [
2002
                                    'defaults' => [
2030
                                        'controller' => '\LeadersLinked\Controller\FeedController',
2003
                                        'controller' => '\\LeadersLinked\\Controller\\FeedController',
2031
                                        'action' => 'commentDelete'
2004
                                        'action' => 'commentDelete',
2032
                                    ]
2005
                                    ],
2033
                                ]
2006
                                ],
2034
                            ]
2007
                            ],
2035
                        ]
2008
                        ],
2036
                    ],
2009
                    ],
2037
                    'share' => [
2010
                    'share' => [
2038
                        'type' => Segment::class,
2011
                        'type' => Segment::class,
2039
                        'options' => [
2012
                        'options' => [
2040
                            'route' => '/share/:id[/company/:company_id][/group/:group_id][/encoding/:encoding]',
2013
                            'route' => '/share/:id[/company/:company_id][/group/:group_id][/encoding/:encoding]',
2041
                            'constraints' => [
2014
                            'constraints' => [
2042
                                'id' => '[A-Za-z0-9\-]+\=*',
2015
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2043
                                'company_id' => '[A-Za-z0-9\-]+\=*',
2016
                                'company_id' => '[A-Za-z0-9\\-]+\\=*',
2044
                                'group_id' => '[A-Za-z0-9\-]+\=*',
2017
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
2045
                                'encoding' => 'base64'
2018
                                'encoding' => 'base64',
2046
                            ],
2019
                            ],
2047
                            'defaults' => [
2020
                            'defaults' => [
2048
                                'controller' => '\LeadersLinked\Controller\FeedController',
2021
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
2049
                                'action' => 'share'
2022
                                'action' => 'share',
2050
                            ]
2023
                            ],
2051
                        ]
2024
                        ],
2052
                    ],
2025
                    ],
2053
                    'save-reaction' => [
2026
                    'save-reaction' => [
2054
                        'type' => Segment::class,
2027
                        'type' => Segment::class,
2055
                        'options' => [
2028
                        'options' => [
2056
                            'route' => '/save-reaction/:id',
2029
                            'route' => '/save-reaction/:id',
2057
                            'constraints' => [
2030
                            'constraints' => [
2058
                                'id' => '[A-Za-z0-9\-]+\=*'
2031
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2059
                            ],
2032
                            ],
2060
                            'defaults' => [
2033
                            'defaults' => [
2061
                                'controller' => '\LeadersLinked\Controller\FeedController',
2034
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
2062
                                'action' => 'saveReaction'
2035
                                'action' => 'saveReaction',
2063
                            ]
2036
                            ],
2064
                        ]
2037
                        ],
2065
                    ],
2038
                    ],
2066
 
-
 
2067
                    'delete-reaction' => [
2039
                    'delete-reaction' => [
2068
                        'type' => Segment::class,
2040
                        'type' => Segment::class,
2069
                        'options' => [
2041
                        'options' => [
2070
                            'route' => '/delete-reaction/:id',
2042
                            'route' => '/delete-reaction/:id',
2071
                            'constraints' => [
2043
                            'constraints' => [
2072
                                'id' => '[A-Za-z0-9\-]+\=*'
2044
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2073
                            ],
2045
                            ],
2074
                            'defaults' => [
2046
                            'defaults' => [
2075
                                'controller' => '\LeadersLinked\Controller\FeedController',
2047
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
2076
                                'action' => 'deleteReaction'
2048
                                'action' => 'deleteReaction',
2077
                            ]
2049
                            ],
2078
                        ]
2050
                        ],
2079
                    ],
2051
                    ],
2080
                    'add' => [
2052
                    'add' => [
2081
                        'type' => Segment::class,
2053
                        'type' => Segment::class,
2082
                        'options' => [
2054
                        'options' => [
2083
                            'route' => '/add[/company/:company_id][/group/:group_id][/encoding/:encoding]',
2055
                            'route' => '/add[/company/:company_id][/group/:group_id][/encoding/:encoding]',
2084
                            'constraints' => [
2056
                            'constraints' => [
2085
                                'company_id' => '[A-Za-z0-9\-]+\=*',
2057
                                'company_id' => '[A-Za-z0-9\\-]+\\=*',
2086
                                'group_id' => '[A-Za-z0-9\-]+\=*',
2058
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
2087
                                'encoding' => 'base64'
2059
                                'encoding' => 'base64',
2088
                            ],
2060
                            ],
2089
                            'defaults' => [
2061
                            'defaults' => [
2090
                                'controller' => '\LeadersLinked\Controller\FeedController',
2062
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
2091
                                'action' => 'add'
2063
                                'action' => 'add',
2092
                            ]
2064
                            ],
2093
                        ]
2065
                        ],
2094
                    ],
2066
                    ],
2095
                    'vote' => [
2067
                    'vote' => [
2096
                        'type' => Segment::class,
2068
                        'type' => Segment::class,
2097
                        'options' => [
2069
                        'options' => [
2098
                            'route' => '/vote/:id',
2070
                            'route' => '/vote/:id',
2099
                            'constraints' => [
2071
                            'constraints' => [
2100
                                'id' => '[A-Za-z0-9\-]+\=*'
2072
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2101
                            ],
2073
                            ],
2102
                            'defaults' => [
2074
                            'defaults' => [
2103
                                'controller' => '\LeadersLinked\Controller\FeedController',
2075
                                'controller' => '\\LeadersLinked\\Controller\\FeedController',
2104
                                'action' => 'vote'
2076
                                'action' => 'vote',
2105
                            ]
2077
                            ],
2106
                        ]
2078
                        ],
2107
                    ]
2079
                    ],
2108
                ]
2080
                ],
2109
            ],
2081
            ],
2110
            'job' => [
2082
            'job' => [
2111
                'type' => Literal::class,
2083
                'type' => Literal::class,
2112
                'options' => [
2084
                'options' => [
2113
                    'route' => '/job',
2085
                    'route' => '/job',
2114
                    'defaults' => [
2086
                    'defaults' => [
2115
                        'controller' => '\LeadersLinked\Controller\JobController',
2087
                        'controller' => '\\LeadersLinked\\Controller\\JobController',
2116
                        'action' => 'index'
2088
                        'action' => 'index',
2117
                    ]
2089
                    ],
2118
                ],
2090
                ],
2119
                'may_terminate' => true,
2091
                'may_terminate' => true,
2120
                'child_routes' => [
2092
                'child_routes' => [
2121
                    'view' => [
2093
                    'view' => [
2122
                        'type' => Segment::class,
2094
                        'type' => Segment::class,
2123
                        'options' => [
2095
                        'options' => [
2124
                            'route' => '/view/:id',
2096
                            'route' => '/view/:id',
2125
                            'constraints' => [
2097
                            'constraints' => [
2126
                                'id' => '[A-Za-z0-9\-]+\=*'
2098
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2127
                            ],
2099
                            ],
2128
                            'defaults' => [
2100
                            'defaults' => [
2129
                                'controller' => '\LeadersLinked\Controller\JobController',
2101
                                'controller' => '\\LeadersLinked\\Controller\\JobController',
2130
                                'action' => 'view'
2102
                                'action' => 'view',
2131
                            ]
2103
                            ],
2132
                        ]
2104
                        ],
2133
                    ],
2105
                    ],
2134
                    'apply-job' => [
2106
                    'apply-job' => [
2135
                        'type' => Segment::class,
2107
                        'type' => Segment::class,
2136
                        'options' => [
2108
                        'options' => [
2137
                            'route' => '/apply-job/:id',
2109
                            'route' => '/apply-job/:id',
2138
                            'constraints' => [
2110
                            'constraints' => [
2139
                                'id' => '[A-Za-z0-9\-]+\=*'
2111
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2140
                            ],
2112
                            ],
2141
                            'defaults' => [
2113
                            'defaults' => [
2142
                                'controller' => '\LeadersLinked\Controller\JobController',
2114
                                'controller' => '\\LeadersLinked\\Controller\\JobController',
2143
                                'action' => 'applyJob'
2115
                                'action' => 'applyJob',
2144
                            ]
2116
                            ],
2145
                        ]
2117
                        ],
2146
                    ],
2118
                    ],
2147
                    'remove-apply-job' => [
2119
                    'remove-apply-job' => [
2148
                        'type' => Segment::class,
2120
                        'type' => Segment::class,
2149
                        'options' => [
2121
                        'options' => [
2150
                            'route' => '/remove-apply-job/:id',
2122
                            'route' => '/remove-apply-job/:id',
2151
                            'constraints' => [
2123
                            'constraints' => [
2152
                                'id' => '[A-Za-z0-9\-]+\=*'
2124
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2153
                            ],
2125
                            ],
2154
                            'defaults' => [
2126
                            'defaults' => [
2155
                                'controller' => '\LeadersLinked\Controller\JobController',
2127
                                'controller' => '\\LeadersLinked\\Controller\\JobController',
2156
                                'action' => 'removeApplyJob'
2128
                                'action' => 'removeApplyJob',
2157
                            ]
2129
                            ],
2158
                        ]
2130
                        ],
2159
                    ],
2131
                    ],
2160
                    'save-job' => [
2132
                    'save-job' => [
2161
                        'type' => Segment::class,
2133
                        'type' => Segment::class,
2162
                        'options' => [
2134
                        'options' => [
2163
                            'route' => '/save-job/:id',
2135
                            'route' => '/save-job/:id',
2164
                            'constraints' => [
2136
                            'constraints' => [
2165
                                'id' => '[A-Za-z0-9\-]+\=*'
2137
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2166
                            ],
2138
                            ],
2167
                            'defaults' => [
2139
                            'defaults' => [
2168
                                'controller' => '\LeadersLinked\Controller\JobController',
2140
                                'controller' => '\\LeadersLinked\\Controller\\JobController',
2169
                                'action' => 'saveJob'
2141
                                'action' => 'saveJob',
2170
                            ]
2142
                            ],
2171
                        ]
2143
                        ],
2172
                    ],
2144
                    ],
2173
                    'remove-save-job' => [
2145
                    'remove-save-job' => [
2174
                        'type' => Segment::class,
2146
                        'type' => Segment::class,
2175
                        'options' => [
2147
                        'options' => [
2176
                            'route' => '/remove-save-job/:id',
2148
                            'route' => '/remove-save-job/:id',
2177
                            'constraints' => [
2149
                            'constraints' => [
2178
                                'id' => '[A-Za-z0-9\-]+\=*'
2150
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2179
                            ],
2151
                            ],
2180
                            'defaults' => [
2152
                            'defaults' => [
2181
                                'controller' => '\LeadersLinked\Controller\JobController',
2153
                                'controller' => '\\LeadersLinked\\Controller\\JobController',
2182
                                'action' => 'removeSaveJob'
2154
                                'action' => 'removeSaveJob',
2183
                            ]
2155
                            ],
2184
                        ]
2156
                        ],
2185
                    ],
2157
                    ],
2186
                    'applied-jobs' => [
2158
                    'applied-jobs' => [
2187
                        'type' => Literal::class,
2159
                        'type' => Literal::class,
2188
                        'options' => [
2160
                        'options' => [
2189
                            'route' => '/applied-jobs',
2161
                            'route' => '/applied-jobs',
2190
                            'defaults' => [
2162
                            'defaults' => [
2191
                                'controller' => '\LeadersLinked\Controller\JobController',
2163
                                'controller' => '\\LeadersLinked\\Controller\\JobController',
2192
                                'action' => 'appliedJobs'
2164
                                'action' => 'appliedJobs',
2193
                            ]
2165
                            ],
2194
                        ]
2166
                        ],
2195
                    ],
2167
                    ],
2196
                    'saved-jobs' => [
2168
                    'saved-jobs' => [
2197
                        'type' => Literal::class,
2169
                        'type' => Literal::class,
2198
                        'options' => [
2170
                        'options' => [
2199
                            'route' => '/saved-jobs',
2171
                            'route' => '/saved-jobs',
2200
                            'defaults' => [
2172
                            'defaults' => [
2201
                                'controller' => '\LeadersLinked\Controller\JobController',
2173
                                'controller' => '\\LeadersLinked\\Controller\\JobController',
2202
                                'action' => 'savedJobs'
2174
                                'action' => 'savedJobs',
2203
                            ]
2175
                            ],
2204
                        ]
2176
                        ],
2205
                    ]
2177
                    ],
2206
                ]
2178
                ],
2207
            ],
2179
            ],
2208
            /*
2180
            /*
2209
              'job' => [
2181
              'job' => [
2210
              'type' => Literal::class,
2182
              'type' => Literal::class,
2211
              'options' => [
2183
              'options' => [
2212
              'route' => '/job',
2184
              'route' => '/job',
2213
              'defaults' => [
2185
              'defaults' => [
2214
              'controller' => '\LeadersLinked\Controller\JobController',
2186
              'controller' => '\\LeadersLinked\\Controller\\JobController',
2215
              'action' => 'index'
2187
              'action' => 'index'
2216
              ]
2188
              ]
2217
              ],
2189
              ],
2218
              'may_terminate' => true,
2190
              'may_terminate' => true,
2219
              'child_routes' => [
2191
              'child_routes' => [
2220
              'view' => [
2192
              'view' => [
2221
              'type' => Segment::class,
2193
              'type' => Segment::class,
2222
              'options' => [
2194
              'options' => [
2223
              'route' => '/view/:id',
2195
              'route' => '/view/:id',
2224
              'constraints' => [
2196
              'constraints' => [
2225
              'id' => '[A-Za-z0-9\-]+\=*'
2197
              'id' => '[A-Za-z0-9\\-]+\\=*'
2226
              ],
2198
              ],
2227
              'defaults' => [
2199
              'defaults' => [
2228
              'controller' => '\LeadersLinked\Controller\CompanyController',
2200
              'controller' => '\\LeadersLinked\\Controller\\CompanyController',
2229
              'action' => 'job'
2201
              'action' => 'job'
2230
              ]
2202
              ]
2231
              ]
2203
              ]
2232
              ],
2204
              ],
2233
              ]
2205
              ]
Línea 2236... Línea 2208...
2236
            'search' => [
2208
            'search' => [
2237
                'type' => Segment::class,
2209
                'type' => Segment::class,
2238
                'options' => [
2210
                'options' => [
2239
                    'route' => '/search[/entity/:entity]',
2211
                    'route' => '/search[/entity/:entity]',
2240
                    'constraints' => [
2212
                    'constraints' => [
2241
                        'entity' => 'user|company|group|job'
2213
                        'entity' => 'user|company|group|job',
2242
                    ],
2214
                    ],
2243
                    'defaults' => [
2215
                    'defaults' => [
2244
                        'controller' => '\LeadersLinked\Controller\SearchController',
2216
                        'controller' => '\\LeadersLinked\\Controller\\SearchController',
2245
                        'action' => 'index'
2217
                        'action' => 'index',
2246
                    ]
2218
                    ],
2247
                ]
2219
                ],
2248
            ],
2220
            ],
2249
            'group' => [
2221
            'group' => [
2250
                'type' => Literal::class,
2222
                'type' => Literal::class,
2251
                'options' => [
2223
                'options' => [
2252
                    'route' => '/group',
2224
                    'route' => '/group',
2253
                    'defaults' => [
2225
                    'defaults' => [
2254
                        'controller' => '\LeadersLinked\GroupController',
2226
                        'controller' => '\\LeadersLinked\\GroupController',
2255
                        'action' => 'index'
2227
                        'action' => 'index',
2256
                    ]
2228
                    ],
2257
                ],
2229
                ],
2258
                'may_terminate' => true,
2230
                'may_terminate' => true,
2259
                'child_routes' => [
2231
                'child_routes' => [
2260
                    'view' => [
2232
                    'view' => [
2261
                        'type' => Segment::class,
2233
                        'type' => Segment::class,
2262
                        'options' => [
2234
                        'options' => [
2263
                            'route' => '/view/:id',
2235
                            'route' => '/view/:id',
2264
                            'constraints' => [
2236
                            'constraints' => [
2265
                                'id' => '[A-Za-z0-9\-]+\=*'
2237
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2266
                            ],
2238
                            ],
2267
                            'defaults' => [
2239
                            'defaults' => [
2268
                                'controller' => '\LeadersLinked\Controller\GroupController',
2240
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2269
                                'action' => 'view'
2241
                                'action' => 'view',
2270
                            ]
2242
                            ],
2271
                        ]
2243
                        ],
2272
                    ],
2244
                    ],
2273
                    'request' => [
2245
                    'request' => [
2274
                        'type' => Segment::class,
2246
                        'type' => Segment::class,
2275
                        'options' => [
2247
                        'options' => [
2276
                            'route' => '/request/:id',
2248
                            'route' => '/request/:id',
2277
                            'constraints' => [
2249
                            'constraints' => [
2278
                                'id' => '[A-Za-z0-9\-]+\=*'
2250
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2279
                            ],
2251
                            ],
2280
                            'defaults' => [
2252
                            'defaults' => [
2281
                                'controller' => '\LeadersLinked\Controller\GroupController',
2253
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2282
                                'action' => 'request'
2254
                                'action' => 'request',
2283
                            ]
2255
                            ],
2284
                        ]
2256
                        ],
2285
                    ],
2257
                    ],
2286
                    'leave' => [
2258
                    'leave' => [
2287
                        'type' => Segment::class,
2259
                        'type' => Segment::class,
2288
                        'options' => [
2260
                        'options' => [
2289
                            'route' => '/leave/:id',
2261
                            'route' => '/leave/:id',
2290
                            'constraints' => [
2262
                            'constraints' => [
2291
                                'id' => '[A-Za-z0-9\-]+\=*'
2263
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2292
                            ],
2264
                            ],
2293
                            'defaults' => [
2265
                            'defaults' => [
2294
                                'controller' => '\LeadersLinked\Controller\GroupController',
2266
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2295
                                'action' => 'leave'
2267
                                'action' => 'leave',
2296
                            ]
2268
                            ],
2297
                        ]
2269
                        ],
2298
                    ],
2270
                    ],
2299
                    'accept' => [
2271
                    'accept' => [
2300
                        'type' => Segment::class,
2272
                        'type' => Segment::class,
2301
                        'options' => [
2273
                        'options' => [
2302
                            'route' => '/accept/:id',
2274
                            'route' => '/accept/:id',
2303
                            'constraints' => [
2275
                            'constraints' => [
2304
                                'id' => '[A-Za-z0-9\-]+\=*'
2276
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2305
                            ],
2277
                            ],
2306
                            'defaults' => [
2278
                            'defaults' => [
2307
                                'controller' => '\LeadersLinked\Controller\GroupController',
2279
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2308
                                'action' => 'accept'
2280
                                'action' => 'accept',
2309
                            ]
2281
                            ],
2310
                        ]
2282
                        ],
2311
                    ],
2283
                    ],
2312
                    'cancel' => [
2284
                    'cancel' => [
2313
                        'type' => Segment::class,
2285
                        'type' => Segment::class,
2314
                        'options' => [
2286
                        'options' => [
2315
                            'route' => '/cancel/:id',
2287
                            'route' => '/cancel/:id',
2316
                            'constraints' => [
2288
                            'constraints' => [
2317
                                'id' => '[A-Za-z0-9\-]+\=*'
2289
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2318
                            ],
2290
                            ],
2319
                            'defaults' => [
2291
                            'defaults' => [
2320
                                'controller' => '\LeadersLinked\Controller\GroupController',
2292
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2321
                                'action' => 'cancel'
2293
                                'action' => 'cancel',
2322
                            ]
2294
                            ],
2323
                        ]
2295
                        ],
2324
                    ],
2296
                    ],
2325
                    'reject' => [
2297
                    'reject' => [
2326
                        'type' => Segment::class,
2298
                        'type' => Segment::class,
2327
                        'options' => [
2299
                        'options' => [
2328
                            'route' => '/reject/:id',
2300
                            'route' => '/reject/:id',
2329
                            'constraints' => [
2301
                            'constraints' => [
2330
                                'id' => '[A-Za-z0-9\-]+\=*'
2302
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2331
                            ],
2303
                            ],
2332
                            'defaults' => [
2304
                            'defaults' => [
2333
                                'controller' => '\LeadersLinked\Controller\GroupController',
2305
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2334
                                'action' => 'reject'
2306
                                'action' => 'reject',
2335
                            ]
2307
                            ],
2336
                        ]
2308
                        ],
2337
                    ],
2309
                    ],
2338
                    'joined-groups' => [
2310
                    'joined-groups' => [
2339
                        'type' => Literal::class,
2311
                        'type' => Literal::class,
2340
                        'options' => [
2312
                        'options' => [
2341
                            'route' => '/joined-groups',
2313
                            'route' => '/joined-groups',
2342
                            'defaults' => [
2314
                            'defaults' => [
2343
                                'controller' => '\LeadersLinked\Controller\GroupController',
2315
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2344
                                'action' => 'joinedGroups'
2316
                                'action' => 'joinedGroups',
2345
                            ]
2317
                            ],
2346
                        ]
2318
                        ],
2347
                    ],
2319
                    ],
2348
                    'requests-sent' => [
2320
                    'requests-sent' => [
2349
                        'type' => Literal::class,
2321
                        'type' => Literal::class,
2350
                        'options' => [
2322
                        'options' => [
2351
                            'route' => '/requests-sent',
2323
                            'route' => '/requests-sent',
2352
                            'defaults' => [
2324
                            'defaults' => [
2353
                                'controller' => '\LeadersLinked\Controller\GroupController',
2325
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2354
                                'action' => 'requestsSent'
2326
                                'action' => 'requestsSent',
2355
                            ]
2327
                            ],
2356
                        ]
2328
                        ],
2357
                    ],
2329
                    ],
2358
                    'invitations-received' => [
2330
                    'invitations-received' => [
2359
                        'type' => Literal::class,
2331
                        'type' => Literal::class,
2360
                        'options' => [
2332
                        'options' => [
2361
                            'route' => '/invitations-received',
2333
                            'route' => '/invitations-received',
2362
                            'defaults' => [
2334
                            'defaults' => [
2363
                                'controller' => '\LeadersLinked\Controller\GroupController',
2335
                                'controller' => '\\LeadersLinked\\Controller\\GroupController',
2364
                                'action' => 'invitationsReceived'
2336
                                'action' => 'invitationsReceived',
2365
                            ]
2337
                            ],
2366
                        ]
2338
                        ],
2367
                    ],
2339
                    ],
2368
                    'my-groups' => [
2340
                    'my-groups' => [
2369
                        'type' => Literal::class,
2341
                        'type' => Literal::class,
2370
                        'options' => [
2342
                        'options' => [
2371
                            'route' => '/my-groups',
2343
                            'route' => '/my-groups',
2372
                            'defaults' => [
2344
                            'defaults' => [
2373
                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2345
                                'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2374
                                'action' => 'index'
2346
                                'action' => 'index',
2375
                            ]
2347
                            ],
2376
                        ],
2348
                        ],
2377
                        'may_terminate' => true,
2349
                        'may_terminate' => true,
2378
                        'child_routes' => [
2350
                        'child_routes' => [
2379
                            'add' => [
2351
                            'add' => [
2380
                                'type' => Literal::class,
2352
                                'type' => Literal::class,
2381
                                'options' => [
2353
                                'options' => [
2382
                                    'route' => '/add',
2354
                                    'route' => '/add',
2383
                                    'defaults' => [
2355
                                    'defaults' => [
2384
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2356
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2385
                                        'action' => 'add'
2357
                                        'action' => 'add',
2386
                                    ]
2358
                                    ],
2387
                                ]
2359
                                ],
2388
                            ],
2360
                            ],
2389
                            'edit' => [
2361
                            'edit' => [
2390
                                'type' => Segment::class,
2362
                                'type' => Segment::class,
2391
                                'options' => [
2363
                                'options' => [
2392
                                    'route' => '/edit/:id',
2364
                                    'route' => '/edit/:id',
2393
                                    'constraints' => [
2365
                                    'constraints' => [
2394
                                        'id' => '[A-Za-z0-9\-]+\=*'
2366
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2395
                                    ],
2367
                                    ],
2396
                                    'defaults' => [
2368
                                    'defaults' => [
2397
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2369
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2398
                                        'action' => 'edit'
2370
                                        'action' => 'edit',
2399
                                    ]
2371
                                    ],
2400
                                ]
2372
                                ],
2401
                            ],
2373
                            ],
2402
                            'delete' => [
2374
                            'delete' => [
2403
                                'type' => Segment::class,
2375
                                'type' => Segment::class,
2404
                                'options' => [
2376
                                'options' => [
2405
                                    'route' => '/delete/:id',
2377
                                    'route' => '/delete/:id',
2406
                                    'constraints' => [
2378
                                    'constraints' => [
2407
                                        'id' => '[A-Za-z0-9\-]+\=*'
2379
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2408
                                    ],
2380
                                    ],
2409
                                    'defaults' => [
2381
                                    'defaults' => [
2410
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2382
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2411
                                        'action' => 'delete'
2383
                                        'action' => 'delete',
2412
                                    ]
2384
                                    ],
2413
                                ]
2385
                                ],
2414
                            ],
2386
                            ],
2415
                            'extended' => [
2387
                            'extended' => [
2416
                                'type' => Segment::class,
2388
                                'type' => Segment::class,
2417
                                'options' => [
2389
                                'options' => [
2418
                                    'route' => '/extended/:id',
2390
                                    'route' => '/extended/:id',
2419
                                    'constraints' => [
2391
                                    'constraints' => [
2420
                                        'id' => '[A-Za-z0-9\-]+\=*'
2392
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2421
                                    ],
2393
                                    ],
2422
                                    'defaults' => [
2394
                                    'defaults' => [
2423
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2395
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2424
                                        'action' => 'extended'
2396
                                        'action' => 'extended',
2425
                                    ]
2397
                                    ],
2426
                                ]
2398
                                ],
2427
                            ],
2399
                            ],
2428
                            'image' => [
2400
                            'image' => [
2429
                                'type' => Segment::class,
2401
                                'type' => Segment::class,
2430
                                'options' => [
2402
                                'options' => [
2431
                                    'route' => '/image/:id/operation/:operation',
2403
                                    'route' => '/image/:id/operation/:operation',
2432
                                    'constraints' => [
2404
                                    'constraints' => [
2433
                                        'id' => '[A-Za-z0-9\-]+\=*',
2405
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2434
                                        'operation' => 'upload|delete'
2406
                                        'operation' => 'upload|delete',
2435
                                    ],
2407
                                    ],
2436
                                    'defaults' => [
2408
                                    'defaults' => [
2437
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2409
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2438
                                        'action' => 'image'
2410
                                        'action' => 'image',
2439
                                    ]
2411
                                    ],
2440
                                ]
2412
                                ],
2441
                            ],
2413
                            ],
2442
                            'cover' => [
2414
                            'cover' => [
2443
                                'type' => Segment::class,
2415
                                'type' => Segment::class,
2444
                                'options' => [
2416
                                'options' => [
2445
                                    'route' => '/cover/:id/operation/:operation',
2417
                                    'route' => '/cover/:id/operation/:operation',
2446
                                    'constraints' => [
2418
                                    'constraints' => [
2447
                                        'id' => '[A-Za-z0-9\-]+\=*',
2419
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2448
                                        'operation' => 'upload|delete'
2420
                                        'operation' => 'upload|delete',
2449
                                    ],
2421
                                    ],
2450
                                    'defaults' => [
2422
                                    'defaults' => [
2451
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2423
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2452
                                        'action' => 'cover'
2424
                                        'action' => 'cover',
2453
                                    ]
2425
                                    ],
2454
                                ]
2426
                                ],
2455
                            ],
2427
                            ],
2456
                            'privacy' => [
2428
                            'privacy' => [
2457
                                'type' => Segment::class,
2429
                                'type' => Segment::class,
2458
                                'options' => [
2430
                                'options' => [
2459
                                    'route' => '/privacy/:id',
2431
                                    'route' => '/privacy/:id',
2460
                                    'constraints' => [
2432
                                    'constraints' => [
2461
                                        'id' => '[A-Za-z0-9\-]+\=*'
2433
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2462
                                    ],
2434
                                    ],
2463
                                    'defaults' => [
2435
                                    'defaults' => [
2464
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2436
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2465
                                        'action' => 'privacy'
2437
                                        'action' => 'privacy',
2466
                                    ]
2438
                                    ],
2467
                                ]
2439
                                ],
2468
                            ],
2440
                            ],
2469
                            'website' => [
2441
                            'website' => [
2470
                                'type' => Segment::class,
2442
                                'type' => Segment::class,
2471
                                'options' => [
2443
                                'options' => [
2472
                                    'route' => '/website/:id',
2444
                                    'route' => '/website/:id',
2473
                                    'constraints' => [
2445
                                    'constraints' => [
2474
                                        'id' => '[A-Za-z0-9\-]+\=*'
2446
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2475
                                    ],
2447
                                    ],
2476
                                    'defaults' => [
2448
                                    'defaults' => [
2477
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2449
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2478
                                        'action' => 'website'
2450
                                        'action' => 'website',
2479
                                    ]
2451
                                    ],
2480
                                ]
2452
                                ],
2481
                            ],
2453
                            ],
2482
                            'industry' => [
2454
                            'industry' => [
2483
                                'type' => Segment::class,
2455
                                'type' => Segment::class,
2484
                                'options' => [
2456
                                'options' => [
2485
                                    'route' => '/industry/:id',
2457
                                    'route' => '/industry/:id',
2486
                                    'constraints' => [
2458
                                    'constraints' => [
2487
                                        'id' => '[A-Za-z0-9\-]+\=*'
2459
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2488
                                    ],
2460
                                    ],
2489
                                    'defaults' => [
2461
                                    'defaults' => [
2490
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2462
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2491
                                        'action' => 'industry'
2463
                                        'action' => 'industry',
2492
                                    ]
2464
                                    ],
2493
                                ]
2465
                                ],
2494
                            ],
2466
                            ],
2495
                            'accessibility' => [
2467
                            'accessibility' => [
2496
                                'type' => Segment::class,
2468
                                'type' => Segment::class,
2497
                                'options' => [
2469
                                'options' => [
2498
                                    'route' => '/accessibility/:id',
2470
                                    'route' => '/accessibility/:id',
2499
                                    'constraints' => [
2471
                                    'constraints' => [
2500
                                        'id' => '[A-Za-z0-9\-]+\=*'
2472
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2501
                                    ],
2473
                                    ],
2502
                                    'defaults' => [
2474
                                    'defaults' => [
2503
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2475
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2504
                                        'action' => 'accessibility'
2476
                                        'action' => 'accessibility',
2505
                                    ]
2477
                                    ],
2506
                                ]
2478
                                ],
2507
                            ],
2479
                            ],
2508
                            'type' => [
2480
                            'type' => [
2509
                                'type' => Segment::class,
2481
                                'type' => Segment::class,
2510
                                'options' => [
2482
                                'options' => [
2511
                                    'route' => '/type/:id',
2483
                                    'route' => '/type/:id',
2512
                                    'constraints' => [
2484
                                    'constraints' => [
2513
                                        'id' => '[A-Za-z0-9\-]+\=*'
2485
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2514
                                    ],
2486
                                    ],
2515
                                    'defaults' => [
2487
                                    'defaults' => [
2516
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2488
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2517
                                        'action' => 'type'
2489
                                        'action' => 'type',
2518
                                    ]
2490
                                    ],
2519
                                ]
2491
                                ],
2520
                            ],
2492
                            ],
2521
                            'status' => [
2493
                            'status' => [
2522
                                'type' => Segment::class,
2494
                                'type' => Segment::class,
2523
                                'options' => [
2495
                                'options' => [
2524
                                    'route' => '/status/:id',
2496
                                    'route' => '/status/:id',
2525
                                    'constraints' => [
2497
                                    'constraints' => [
2526
                                        'id' => '[A-Za-z0-9\-]+\=*'
2498
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2527
                                    ],
2499
                                    ],
2528
                                    'defaults' => [
2500
                                    'defaults' => [
2529
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2501
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2530
                                        'action' => 'status'
2502
                                        'action' => 'status',
2531
                                    ]
2503
                                    ],
2532
                                ]
2504
                                ],
2533
                            ],
2505
                            ],
2534
                            'members' => [
2506
                            'members' => [
2535
                                'type' => Segment::class,
2507
                                'type' => Segment::class,
2536
                                'options' => [
2508
                                'options' => [
2537
                                    'route' => '/members/:id',
2509
                                    'route' => '/members/:id',
2538
                                    'constraints' => [
2510
                                    'constraints' => [
2539
                                        'id' => '[A-Za-z0-9\-]+\=*'
2511
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2540
                                    ],
2512
                                    ],
2541
                                    'defaults' => [
2513
                                    'defaults' => [
2542
                                        'controller' => '\LeadersLinked\Controller\MyGroupsController',
2514
                                        'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2543
                                        'action' => 'members'
2515
                                        'action' => 'members',
2544
                                    ]
2516
                                    ],
2545
                                ],
2517
                                ],
2546
                                'may_terminate' => true,
2518
                                'may_terminate' => true,
2547
                                'child_routes' => [
2519
                                'child_routes' => [
2548
                                    'invite' => [
2520
                                    'invite' => [
2549
                                        'type' => Segment::class,
2521
                                        'type' => Segment::class,
2550
                                        'options' => [
2522
                                        'options' => [
2551
                                            'route' => '/invite/:user_id',
2523
                                            'route' => '/invite/:user_id',
2552
                                            'constraints' => [
2524
                                            'constraints' => [
2553
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2525
                                                'user_id' => '[A-Za-z0-9\\-]+\\=*',
2554
                                            ],
2526
                                            ],
2555
                                            'defaults' => [
2527
                                            'defaults' => [
2556
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2528
                                                'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2557
                                                'action' => 'invite'
2529
                                                'action' => 'invite',
2558
                                            ]
2530
                                            ],
2559
                                        ]
2531
                                        ],
2560
                                    ],
2532
                                    ],
2561
                                    'approve' => [
2533
                                    'approve' => [
2562
                                        'type' => Segment::class,
2534
                                        'type' => Segment::class,
2563
                                        'options' => [
2535
                                        'options' => [
2564
                                            'route' => '/approve/:user_id',
2536
                                            'route' => '/approve/:user_id',
2565
                                            'constraints' => [
2537
                                            'constraints' => [
2566
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2538
                                                'user_id' => '[A-Za-z0-9\\-]+\\=*',
2567
                                            ],
2539
                                            ],
2568
                                            'defaults' => [
2540
                                            'defaults' => [
2569
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2541
                                                'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2570
                                                'action' => 'approve'
2542
                                                'action' => 'approve',
2571
                                            ]
2543
                                            ],
2572
                                        ]
2544
                                        ],
2573
                                    ],
2545
                                    ],
2574
                                    'reject' => [
2546
                                    'reject' => [
2575
                                        'type' => Segment::class,
2547
                                        'type' => Segment::class,
2576
                                        'options' => [
2548
                                        'options' => [
2577
                                            'route' => '/reject/:user_id',
2549
                                            'route' => '/reject/:user_id',
2578
                                            'constraints' => [
2550
                                            'constraints' => [
2579
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2551
                                                'user_id' => '[A-Za-z0-9\\-]+\\=*',
2580
                                            ],
2552
                                            ],
2581
                                            'defaults' => [
2553
                                            'defaults' => [
2582
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2554
                                                'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2583
                                                'action' => 'reject'
2555
                                                'action' => 'reject',
2584
                                            ]
2556
                                            ],
2585
                                        ]
2557
                                        ],
2586
                                    ],
2558
                                    ],
2587
                                    'cancel' => [
2559
                                    'cancel' => [
2588
                                        'type' => Segment::class,
2560
                                        'type' => Segment::class,
2589
                                        'options' => [
2561
                                        'options' => [
2590
                                            'route' => '/cancel/:user_id',
2562
                                            'route' => '/cancel/:user_id',
2591
                                            'constraints' => [
2563
                                            'constraints' => [
2592
                                                'user_id' => '[A-Za-z0-9\-]+\=*'
2564
                                                'user_id' => '[A-Za-z0-9\\-]+\\=*',
2593
                                            ],
2565
                                            ],
2594
                                            'defaults' => [
2566
                                            'defaults' => [
2595
                                                'controller' => '\LeadersLinked\Controller\MyGroupsController',
2567
                                                'controller' => '\\LeadersLinked\\Controller\\MyGroupsController',
2596
                                                'action' => 'cancel'
2568
                                                'action' => 'cancel',
2597
                                            ]
2569
                                            ],
2598
                                        ]
2570
                                        ],
2599
                                    ]
2571
                                    ],
2600
                                ]
2572
                                ],
2601
                            ]
2573
                            ],
2602
                        ]
2574
                        ],
2603
                    ]
2575
                    ],
2604
                ]
2576
                ],
2605
            ],
2577
            ],
2606
            'profile' => [
2578
            'profile' => [
2607
                'type' => Literal::class,
2579
                'type' => Literal::class,
2608
                'options' => [
2580
                'options' => [
2609
                    'route' => '/profile',
2581
                    'route' => '/profile',
2610
                    'defaults' => [
2582
                    'defaults' => [
2611
                        'controller' => '\LeadersLinked\ControllerProfileController',
2583
                        'controller' => '\\LeadersLinked\\ControllerProfileController',
2612
                        'action' => 'index'
2584
                        'action' => 'index',
2613
                    ]
2585
                    ],
2614
                ],
2586
                ],
2615
                'may_terminate' => true,
2587
                'may_terminate' => true,
2616
                'child_routes' => [
2588
                'child_routes' => [
2617
 
-
 
2618
                    'people-viewed-profile' => [
2589
                    'people-viewed-profile' => [
2619
                        'type' => Literal::class,
2590
                        'type' => Literal::class,
2620
                        'options' => [
2591
                        'options' => [
2621
                            'route' => '/people-viewed-profile',
2592
                            'route' => '/people-viewed-profile',
2622
                            'defaults' => [
2593
                            'defaults' => [
2623
                                'controller' => '\LeadersLinked\Controller\ProfileController',
2594
                                'controller' => '\\LeadersLinked\\Controller\\ProfileController',
2624
                                'action' => 'peopleViewedProfile'
2595
                                'action' => 'peopleViewedProfile',
2625
                            ]
2596
                            ],
2626
                        ]
2597
                        ],
2627
                    ],
2598
                    ],
2628
                    'view' => [
2599
                    'view' => [
2629
                        'type' => Segment::class,
2600
                        'type' => Segment::class,
2630
                        'options' => [
2601
                        'options' => [
2631
                            'route' => '/view/:id',
2602
                            'route' => '/view/:id',
2632
                            'constraints' => [
2603
                            'constraints' => [
2633
                                'id' => '[A-Za-z0-9\-]+\=*'
2604
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2634
                            ],
2605
                            ],
2635
                            'defaults' => [
2606
                            'defaults' => [
2636
                                'controller' => '\LeadersLinked\Controller\ProfileController',
2607
                                'controller' => '\\LeadersLinked\\Controller\\ProfileController',
2637
                                'action' => 'view'
2608
                                'action' => 'view',
2638
                            ]
2609
                            ],
2639
                        ]
2610
                        ],
2640
                    ],
2611
                    ],
2641
                    'self-evaluation' => [
2612
                    'self-evaluation' => [
2642
                        'type' => Literal::class,
2613
                        'type' => Literal::class,
2643
                        'options' => [
2614
                        'options' => [
2644
                            'route' => '/self-evaluation',
2615
                            'route' => '/self-evaluation',
2645
                            'defaults' => [
2616
                            'defaults' => [
2646
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
2617
                                'controller' => '\\LeadersLinked\\Controller\\SelfEvaluationController',
2647
                                'action' => 'index'
2618
                                'action' => 'index',
2648
                            ]
2619
                            ],
2649
                        ],
2620
                        ],
2650
                        'may_terminate' => true,
2621
                        'may_terminate' => true,
2651
                        'child_routes' => [
2622
                        'child_routes' => [
2652
                            'take-a-test' => [
2623
                            'take-a-test' => [
2653
                                'type' => Segment::class,
2624
                                'type' => Segment::class,
2654
                                'options' => [
2625
                                'options' => [
2655
                                    'route' => '/take-a-test/:id',
2626
                                    'route' => '/take-a-test/:id',
2656
                                    'constraints' => [
2627
                                    'constraints' => [
2657
                                        'id' => '[A-Za-z0-9\-]+\=*'
2628
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2658
                                    ],
2629
                                    ],
2659
                                    'defaults' => [
2630
                                    'defaults' => [
2660
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
2631
                                        'controller' => '\\LeadersLinked\\Controller\\SelfEvaluationController',
2661
                                        'action' => 'takeaTest'
2632
                                        'action' => 'takeaTest',
2662
                                    ]
2633
                                    ],
2663
                                ]
2634
                                ],
2664
                            ],
2635
                            ],
2665
                            'report' => [
2636
                            'report' => [
2666
                                'type' => Segment::class,
2637
                                'type' => Segment::class,
2667
                                'options' => [
2638
                                'options' => [
2668
                                    'route' => '/report/:id',
2639
                                    'route' => '/report/:id',
2669
                                    'constraints' => [
2640
                                    'constraints' => [
2670
                                        'id' => '[A-Za-z0-9\-]+\=*'
2641
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2671
                                    ],
2642
                                    ],
2672
                                    'defaults' => [
2643
                                    'defaults' => [
2673
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
2644
                                        'controller' => '\\LeadersLinked\\Controller\\SelfEvaluationController',
2674
                                        'action' => 'report'
2645
                                        'action' => 'report',
2675
                                    ]
2646
                                    ],
2676
                                ]
2647
                                ],
2677
                            ]
2648
                            ],
2678
                        ]
2649
                        ],
2679
                    ],
2650
                    ],
2680
                    'performance-evaluation' => [
2651
                    'performance-evaluation' => [
2681
                        'type' => Literal::class,
2652
                        'type' => Literal::class,
2682
                        'options' => [
2653
                        'options' => [
2683
                            'route' => '/performance-evaluation',
2654
                            'route' => '/performance-evaluation',
2684
                            'defaults' => [
2655
                            'defaults' => [
2685
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
2656
                                'controller' => '\\LeadersLinked\\Controller\\PerformanceEvaluationController',
2686
                                'action' => 'index'
2657
                                'action' => 'index',
2687
                            ]
2658
                            ],
2688
                        ],
2659
                        ],
2689
                        'may_terminate' => true,
2660
                        'may_terminate' => true,
2690
                        'child_routes' => [
2661
                        'child_routes' => [
2691
                            'take-a-test' => [
2662
                            'take-a-test' => [
2692
                                'type' => Segment::class,
2663
                                'type' => Segment::class,
2693
                                'options' => [
2664
                                'options' => [
2694
                                    'route' => '/take-a-test/:id',
2665
                                    'route' => '/take-a-test/:id',
2695
                                    'constraints' => [
2666
                                    'constraints' => [
2696
                                        'id' => '[A-Za-z0-9\-]+\=*'
2667
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2697
                                    ],
2668
                                    ],
2698
                                    'defaults' => [
2669
                                    'defaults' => [
2699
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
2670
                                        'controller' => '\\LeadersLinked\\Controller\\PerformanceEvaluationController',
2700
                                        'action' => 'takeaTest'
2671
                                        'action' => 'takeaTest',
2701
                                    ]
2672
                                    ],
2702
                                ]
2673
                                ],
2703
                            ],
2674
                            ],
2704
                            'report' => [
2675
                            'report' => [
2705
                                'type' => Segment::class,
2676
                                'type' => Segment::class,
2706
                                'options' => [
2677
                                'options' => [
2707
                                    'route' => '/report/:id',
2678
                                    'route' => '/report/:id',
2708
                                    'constraints' => [
2679
                                    'constraints' => [
2709
                                        'id' => '[A-Za-z0-9\-]+\=*'
2680
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2710
                                    ],
2681
                                    ],
2711
                                    'defaults' => [
2682
                                    'defaults' => [
2712
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationController',
2683
                                        'controller' => '\\LeadersLinked\\Controller\\PerformanceEvaluationController',
2713
                                        'action' => 'report'
2684
                                        'action' => 'report',
2714
                                    ]
2685
                                    ],
2715
                                ]
2686
                                ],
2716
                            ]
2687
                            ],
2717
                        ]
2688
                        ],
2718
                    ],
2689
                    ],
2719
                    'my-profiles' => [
2690
                    'my-profiles' => [
2720
                        'type' => Literal::class,
2691
                        'type' => Literal::class,
2721
                        'options' => [
2692
                        'options' => [
2722
                            'route' => '/my-profiles',
2693
                            'route' => '/my-profiles',
2723
                            'defaults' => [
2694
                            'defaults' => [
2724
                                'controller' => '\LeadersLinked\Controller\MyProfilesController',
2695
                                'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2725
                                'action' => 'index'
2696
                                'action' => 'index',
2726
                            ]
2697
                            ],
2727
                        ],
2698
                        ],
2728
                        'may_terminate' => true,
2699
                        'may_terminate' => true,
2729
                        'child_routes' => [
2700
                        'child_routes' => [
2730
                            'add' => [
2701
                            'add' => [
2731
                                'type' => Literal::class,
2702
                                'type' => Literal::class,
2732
                                'options' => [
2703
                                'options' => [
2733
                                    'route' => '/add',
2704
                                    'route' => '/add',
2734
                                    'defaults' => [
2705
                                    'defaults' => [
2735
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2706
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2736
                                        'action' => 'add'
2707
                                        'action' => 'add',
2737
                                    ]
2708
                                    ],
2738
                                ]
2709
                                ],
2739
                            ],
2710
                            ],
2740
                            'edit' => [
2711
                            'edit' => [
2741
                                'type' => Segment::class,
2712
                                'type' => Segment::class,
2742
                                'options' => [
2713
                                'options' => [
2743
                                    'route' => '/edit/:id',
2714
                                    'route' => '/edit/:id',
2744
                                    'constraints' => [
2715
                                    'constraints' => [
2745
                                        'id' => '[A-Za-z0-9\-]+\=*'
2716
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2746
                                    ],
2717
                                    ],
2747
                                    'defaults' => [
2718
                                    'defaults' => [
2748
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2719
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2749
                                        'action' => 'edit'
2720
                                        'action' => 'edit',
2750
                                    ]
2721
                                    ],
2751
                                ]
2722
                                ],
2752
                            ],
2723
                            ],
2753
                            'delete' => [
2724
                            'delete' => [
2754
                                'type' => Segment::class,
2725
                                'type' => Segment::class,
2755
                                'options' => [
2726
                                'options' => [
2756
                                    'route' => '/delete/:id',
2727
                                    'route' => '/delete/:id',
2757
                                    'constraints' => [
2728
                                    'constraints' => [
2758
                                        'id' => '[A-Za-z0-9\-]+\=*'
2729
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2759
                                    ],
2730
                                    ],
2760
                                    'defaults' => [
2731
                                    'defaults' => [
2761
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2732
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2762
                                        'action' => 'delete'
2733
                                        'action' => 'delete',
2763
                                    ]
2734
                                    ],
2764
                                ]
2735
                                ],
2765
                            ],
2736
                            ],
2766
                            'extended' => [
2737
                            'extended' => [
2767
                                'type' => Segment::class,
2738
                                'type' => Segment::class,
2768
                                'options' => [
2739
                                'options' => [
2769
                                    'route' => '/extended/:id',
2740
                                    'route' => '/extended/:id',
2770
                                    'constraints' => [
2741
                                    'constraints' => [
2771
                                        'id' => '[A-Za-z0-9\-]+\=*'
2742
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2772
                                    ],
2743
                                    ],
2773
                                    'defaults' => [
2744
                                    'defaults' => [
2774
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2745
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2775
                                        'action' => 'extended'
2746
                                        'action' => 'extended',
2776
                                    ]
2747
                                    ],
2777
                                ]
2748
                                ],
2778
                            ],
2749
                            ],
2779
                            'image' => [
2750
                            'image' => [
2780
                                'type' => Segment::class,
2751
                                'type' => Segment::class,
2781
                                'options' => [
2752
                                'options' => [
2782
                                    'route' => '/image/:id/operation/:operation',
2753
                                    'route' => '/image/:id/operation/:operation',
2783
                                    'constraints' => [
2754
                                    'constraints' => [
2784
                                        'id' => '[A-Za-z0-9\-]+\=*',
2755
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2785
                                        'operation' => 'upload|delete'
2756
                                        'operation' => 'upload|delete',
2786
                                    ],
2757
                                    ],
2787
                                    'defaults' => [
2758
                                    'defaults' => [
2788
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2759
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2789
                                        'action' => 'image'
2760
                                        'action' => 'image',
2790
                                    ]
2761
                                    ],
2791
                                ]
2762
                                ],
2792
                            ],
2763
                            ],
2793
                            'cover' => [
2764
                            'cover' => [
2794
                                'type' => Segment::class,
2765
                                'type' => Segment::class,
2795
                                'options' => [
2766
                                'options' => [
2796
                                    'route' => '/cover/:id/operation/:operation',
2767
                                    'route' => '/cover/:id/operation/:operation',
2797
                                    'constraints' => [
2768
                                    'constraints' => [
2798
                                        'id' => '[A-Za-z0-9\-]+\=*',
2769
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2799
                                        'operation' => 'upload|delete'
2770
                                        'operation' => 'upload|delete',
2800
                                    ],
2771
                                    ],
2801
                                    'defaults' => [
2772
                                    'defaults' => [
2802
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2773
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2803
                                        'action' => 'cover'
2774
                                        'action' => 'cover',
2804
                                    ]
2775
                                    ],
2805
                                ]
2776
                                ],
2806
                            ],
2777
                            ],
2807
                            'experience' => [
2778
                            'experience' => [
2808
                                'type' => Segment::class,
2779
                                'type' => Segment::class,
2809
                                'options' => [
2780
                                'options' => [
2810
                                    'route' => '/experience/:id/operation/:operation[/:user_experience_id]',
2781
                                    'route' => '/experience/:id/operation/:operation[/:user_experience_id]',
2811
                                    'constraints' => [
2782
                                    'constraints' => [
2812
                                        'id' => '[A-Za-z0-9\-]+\=*',
2783
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2813
                                        'operation' => 'add|edit|delete',
2784
                                        'operation' => 'add|edit|delete',
2814
                                        'user_education_id' => '[A-Za-z0-9\-]+\=*'
2785
                                        'user_education_id' => '[A-Za-z0-9\\-]+\\=*',
2815
                                    ],
2786
                                    ],
2816
                                    'defaults' => [
2787
                                    'defaults' => [
2817
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2788
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2818
                                        'action' => 'experience'
2789
                                        'action' => 'experience',
2819
                                    ]
2790
                                    ],
2820
                                ]
2791
                                ],
2821
                            ],
2792
                            ],
2822
                            'education' => [
2793
                            'education' => [
2823
                                'type' => Segment::class,
2794
                                'type' => Segment::class,
2824
                                'options' => [
2795
                                'options' => [
2825
                                    'route' => '/education/:id/operation/:operation[/:user_education_id]',
2796
                                    'route' => '/education/:id/operation/:operation[/:user_education_id]',
2826
                                    'constraints' => [
2797
                                    'constraints' => [
2827
                                        'id' => '[A-Za-z0-9\-]+\=*',
2798
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2828
                                        'operation' => 'add|edit|delete',
2799
                                        'operation' => 'add|edit|delete',
2829
                                        'user_education_id' => '[A-Za-z0-9\-]+\=*'
2800
                                        'user_education_id' => '[A-Za-z0-9\\-]+\\=*',
2830
                                    ],
2801
                                    ],
2831
                                    'defaults' => [
2802
                                    'defaults' => [
2832
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2803
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2833
                                        'action' => 'education'
2804
                                        'action' => 'education',
2834
                                    ]
2805
                                    ],
2835
                                ]
2806
                                ],
2836
                            ],
2807
                            ],
2837
                            'language' => [
2808
                            'language' => [
2838
                                'type' => Segment::class,
2809
                                'type' => Segment::class,
2839
                                'options' => [
2810
                                'options' => [
2840
                                    'route' => '/language/:id',
2811
                                    'route' => '/language/:id',
2841
                                    'constraints' => [
2812
                                    'constraints' => [
2842
                                        'id' => '[A-Za-z0-9\-]+\=*'
2813
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2843
                                    ],
2814
                                    ],
2844
                                    'defaults' => [
2815
                                    'defaults' => [
2845
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2816
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2846
                                        'action' => 'language'
2817
                                        'action' => 'language',
2847
                                    ]
2818
                                    ],
2848
                                ]
2819
                                ],
2849
                            ],
2820
                            ],
2850
                            'location' => [
2821
                            'location' => [
2851
                                'type' => Segment::class,
2822
                                'type' => Segment::class,
2852
                                'options' => [
2823
                                'options' => [
2853
                                    'route' => '/location/:id',
2824
                                    'route' => '/location/:id',
2854
                                    'constraints' => [
2825
                                    'constraints' => [
2855
                                        'id' => '[A-Za-z0-9\-]+\=*'
2826
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2856
                                    ],
2827
                                    ],
2857
                                    'defaults' => [
2828
                                    'defaults' => [
2858
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2829
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2859
                                        'action' => 'location'
2830
                                        'action' => 'location',
2860
                                    ]
2831
                                    ],
2861
                                ]
2832
                                ],
2862
                            ],
2833
                            ],
2863
                            'skill' => [
2834
                            'skill' => [
2864
                                'type' => Segment::class,
2835
                                'type' => Segment::class,
2865
                                'options' => [
2836
                                'options' => [
2866
                                    'route' => '/skill/:id',
2837
                                    'route' => '/skill/:id',
2867
                                    'constraints' => [
2838
                                    'constraints' => [
2868
                                        'id' => '[A-Za-z0-9\-]+\=*'
2839
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2869
                                    ],
2840
                                    ],
2870
                                    'defaults' => [
2841
                                    'defaults' => [
2871
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2842
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2872
                                        'action' => 'skill'
2843
                                        'action' => 'skill',
2873
                                    ]
2844
                                    ],
2874
                                ]
2845
                                ],
2875
                            ],
2846
                            ],
2876
                            'social-network' => [
2847
                            'social-network' => [
2877
                                'type' => Segment::class,
2848
                                'type' => Segment::class,
2878
                                'options' => [
2849
                                'options' => [
2879
                                    'route' => '/social-network/:id',
2850
                                    'route' => '/social-network/:id',
2880
                                    'constraints' => [
2851
                                    'constraints' => [
2881
                                        'id' => '[A-Za-z0-9\-]+\=*'
2852
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2882
                                    ],
2853
                                    ],
2883
                                    'defaults' => [
2854
                                    'defaults' => [
2884
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2855
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2885
                                        'action' => 'socialNetwork'
2856
                                        'action' => 'socialNetwork',
2886
                                    ]
2857
                                    ],
2887
                                ]
2858
                                ],
2888
                            ],
2859
                            ],
2889
                            'aptitude' => [
2860
                            'aptitude' => [
2890
                                'type' => Segment::class,
2861
                                'type' => Segment::class,
2891
                                'options' => [
2862
                                'options' => [
2892
                                    'route' => '/aptitude/:id',
2863
                                    'route' => '/aptitude/:id',
2893
                                    'constraints' => [
2864
                                    'constraints' => [
2894
                                        'id' => '[A-Za-z0-9\-]+\=*'
2865
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2895
                                    ],
2866
                                    ],
2896
                                    'defaults' => [
2867
                                    'defaults' => [
2897
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2868
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2898
                                        'action' => 'aptitude'
2869
                                        'action' => 'aptitude',
2899
                                    ]
2870
                                    ],
2900
                                ]
2871
                                ],
2901
                            ],
2872
                            ],
2902
                            'hobby-and-interest' => [
2873
                            'hobby-and-interest' => [
2903
                                'type' => Segment::class,
2874
                                'type' => Segment::class,
2904
                                'options' => [
2875
                                'options' => [
2905
                                    'route' => '/hobby-and-interest/:id',
2876
                                    'route' => '/hobby-and-interest/:id',
2906
                                    'constraints' => [
2877
                                    'constraints' => [
2907
                                        'id' => '[A-Za-z0-9\-]+\=*'
2878
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
2908
                                    ],
2879
                                    ],
2909
                                    'defaults' => [
2880
                                    'defaults' => [
2910
                                        'controller' => '\LeadersLinked\Controller\MyProfilesController',
2881
                                        'controller' => '\\LeadersLinked\\Controller\\MyProfilesController',
2911
                                        'action' => 'hobbyAndInterest'
2882
                                        'action' => 'hobbyAndInterest',
2912
                                    ]
2883
                                    ],
2913
                                ]
2884
                                ],
2914
                            ]
2885
                            ],
2915
                        ]
2886
                        ],
2916
                    ]
2887
                    ],
2917
                ]
2888
                ],
2918
            ],
2889
            ],
2919
            'company' => [
2890
            'company' => [
2920
                'type' => Literal::class,
2891
                'type' => Literal::class,
2921
                'options' => [
2892
                'options' => [
2922
                    'route' => '/company',
2893
                    'route' => '/company',
2923
                    'defaults' => [
2894
                    'defaults' => [
2924
                        'controller' => '\LeadersLinked\Controller\CompanyController',
2895
                        'controller' => '\\LeadersLinked\\Controller\\CompanyController',
2925
                        'action' => 'index'
2896
                        'action' => 'index',
2926
                    ]
2897
                    ],
2927
                ],
2898
                ],
2928
                'may_terminate' => true,
2899
                'may_terminate' => true,
2929
                'child_routes' => [
2900
                'child_routes' => [
2930
                    'view' => [
2901
                    'view' => [
2931
                        'type' => Segment::class,
2902
                        'type' => Segment::class,
2932
                        'options' => [
2903
                        'options' => [
2933
                            'route' => '/view/:id',
2904
                            'route' => '/view/:id',
2934
                            'constraints' => [
2905
                            'constraints' => [
2935
                                'id' => '[A-Za-z0-9\-]+\=*'
2906
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2936
                            ],
2907
                            ],
2937
                            'defaults' => [
2908
                            'defaults' => [
2938
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2909
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
2939
                                'action' => 'view'
2910
                                'action' => 'view',
2940
                            ]
2911
                            ],
2941
                        ]
2912
                        ],
2942
                    ],
2913
                    ],
2943
                    'follow' => [
2914
                    'follow' => [
2944
                        'type' => Segment::class,
2915
                        'type' => Segment::class,
2945
                        'options' => [
2916
                        'options' => [
2946
                            'route' => '/follow/:id',
2917
                            'route' => '/follow/:id',
2947
                            'constraints' => [
2918
                            'constraints' => [
2948
                                'id' => '[A-Za-z0-9\-]+\=*'
2919
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2949
                            ],
2920
                            ],
2950
                            'defaults' => [
2921
                            'defaults' => [
2951
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2922
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
2952
                                'action' => 'follow'
2923
                                'action' => 'follow',
2953
                            ]
2924
                            ],
2954
                        ]
2925
                        ],
2955
                    ],
2926
                    ],
2956
                    'unfollow' => [
2927
                    'unfollow' => [
2957
                        'type' => Segment::class,
2928
                        'type' => Segment::class,
2958
                        'options' => [
2929
                        'options' => [
2959
                            'route' => '/unfollow/:id',
2930
                            'route' => '/unfollow/:id',
2960
                            'constraints' => [
2931
                            'constraints' => [
2961
                                'id' => '[A-Za-z0-9\-]+\=*'
2932
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2962
                            ],
2933
                            ],
2963
                            'defaults' => [
2934
                            'defaults' => [
2964
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2935
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
2965
                                'action' => 'unfollow'
2936
                                'action' => 'unfollow',
2966
                            ]
2937
                            ],
2967
                        ]
2938
                        ],
2968
                    ],
2939
                    ],
2969
                    'request' => [
2940
                    'request' => [
2970
                        'type' => Segment::class,
2941
                        'type' => Segment::class,
2971
                        'options' => [
2942
                        'options' => [
2972
                            'route' => '/request/:id',
2943
                            'route' => '/request/:id',
2973
                            'constraints' => [
2944
                            'constraints' => [
2974
                                'id' => '[A-Za-z0-9\-]+\=*'
2945
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2975
                            ],
2946
                            ],
2976
                            'defaults' => [
2947
                            'defaults' => [
2977
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2948
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
2978
                                'action' => 'request'
2949
                                'action' => 'request',
2979
                            ]
2950
                            ],
2980
                        ]
2951
                        ],
2981
                    ],
2952
                    ],
2982
                    'accept' => [
2953
                    'accept' => [
2983
                        'type' => Segment::class,
2954
                        'type' => Segment::class,
2984
                        'options' => [
2955
                        'options' => [
2985
                            'route' => '/accept/:id',
2956
                            'route' => '/accept/:id',
2986
                            'constraints' => [
2957
                            'constraints' => [
2987
                                'id' => '[A-Za-z0-9\-]+\=*'
2958
                                'id' => '[A-Za-z0-9\\-]+\\=*',
2988
                            ],
2959
                            ],
2989
                            'defaults' => [
2960
                            'defaults' => [
2990
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2961
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
2991
                                'action' => 'accept'
2962
                                'action' => 'accept',
2992
                            ]
2963
                            ],
2993
                        ]
2964
                        ],
2994
                    ],
2965
                    ],
2995
                    'cancel' => [
2966
                    'cancel' => [
2996
                        'type' => Segment::class,
2967
                        'type' => Segment::class,
2997
                        'options' => [
2968
                        'options' => [
2998
                            'route' => '/cancel/:id',
2969
                            'route' => '/cancel/:id',
2999
                            'constraints' => [
2970
                            'constraints' => [
3000
                                'id' => '[A-Za-z0-9\-]+\=*'
2971
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3001
                            ],
2972
                            ],
3002
                            'defaults' => [
2973
                            'defaults' => [
3003
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2974
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
3004
                                'action' => 'cancel'
2975
                                'action' => 'cancel',
3005
                            ]
2976
                            ],
3006
                        ]
2977
                        ],
3007
                    ],
2978
                    ],
3008
                    'reject' => [
2979
                    'reject' => [
3009
                        'type' => Segment::class,
2980
                        'type' => Segment::class,
3010
                        'options' => [
2981
                        'options' => [
3011
                            'route' => '/reject/:id',
2982
                            'route' => '/reject/:id',
3012
                            'constraints' => [
2983
                            'constraints' => [
3013
                                'id' => '[A-Za-z0-9\-]+\=*'
2984
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3014
                            ],
2985
                            ],
3015
                            'defaults' => [
2986
                            'defaults' => [
3016
                                'controller' => '\LeadersLinked\Controller\CompanyController',
2987
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
3017
                                'action' => 'reject'
2988
                                'action' => 'reject',
3018
                            ]
2989
                            ],
3019
                        ]
2990
                        ],
3020
                    ],
2991
                    ],
3021
                    'leave' => [
2992
                    'leave' => [
3022
                        'type' => Segment::class,
2993
                        'type' => Segment::class,
3023
                        'options' => [
2994
                        'options' => [
3024
                            'route' => '/leave/:id',
2995
                            'route' => '/leave/:id',
3025
                            'constraints' => [
2996
                            'constraints' => [
3026
                                'id' => '[A-Za-z0-9\-]+\=*'
2997
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3027
                            ],
2998
                            ],
3028
                            'defaults' => [
2999
                            'defaults' => [
3029
                                'controller' => '\LeadersLinked\Controller\CompanyController',
3000
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
3030
                                'action' => 'leave'
3001
                                'action' => 'leave',
3031
                            ]
3002
                            ],
3032
                        ]
3003
                        ],
3033
                    ],
3004
                    ],
3034
                    'following-companies' => [
3005
                    'following-companies' => [
3035
                        'type' => Literal::class,
3006
                        'type' => Literal::class,
3036
                        'options' => [
3007
                        'options' => [
3037
                            'route' => '/following-companies',
3008
                            'route' => '/following-companies',
3038
                            'defaults' => [
3009
                            'defaults' => [
3039
                                'controller' => '\LeadersLinked\Controller\CompanyController',
3010
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
3040
                                'action' => 'followingCompanies'
3011
                                'action' => 'followingCompanies',
3041
                            ]
3012
                            ],
3042
                        ]
3013
                        ],
3043
                    ],
3014
                    ],
3044
                    'requests-sent' => [
3015
                    'requests-sent' => [
3045
                        'type' => Literal::class,
3016
                        'type' => Literal::class,
3046
                        'options' => [
3017
                        'options' => [
3047
                            'route' => '/requests-sent',
3018
                            'route' => '/requests-sent',
3048
                            'defaults' => [
3019
                            'defaults' => [
3049
                                'controller' => '\LeadersLinked\Controller\CompanyController',
3020
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
3050
                                'action' => 'requestsSent'
3021
                                'action' => 'requestsSent',
3051
                            ]
3022
                            ],
3052
                        ],
3023
                        ],
3053
                        'may_terminate' => true
3024
                        'may_terminate' => true,
3054
                    ],
3025
                    ],
3055
                    'invitations-received' => [
3026
                    'invitations-received' => [
3056
                        'type' => Literal::class,
3027
                        'type' => Literal::class,
3057
                        'options' => [
3028
                        'options' => [
3058
                            'route' => '/invitations-received',
3029
                            'route' => '/invitations-received',
3059
                            'defaults' => [
3030
                            'defaults' => [
3060
                                'controller' => '\LeadersLinked\Controller\CompanyController',
3031
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
3061
                                'action' => 'invitationsReceived'
3032
                                'action' => 'invitationsReceived',
3062
                            ]
3033
                            ],
3063
                        ],
3034
                        ],
3064
                        'may_terminate' => true
3035
                        'may_terminate' => true,
3065
                    ],
3036
                    ],
3066
                    'i-work-with' => [
3037
                    'i-work-with' => [
3067
                        'type' => Literal::class,
3038
                        'type' => Literal::class,
3068
                        'options' => [
3039
                        'options' => [
3069
                            'route' => '/i-work-with',
3040
                            'route' => '/i-work-with',
3070
                            'defaults' => [
3041
                            'defaults' => [
3071
                                'controller' => '\LeadersLinked\Controller\CompanyController',
3042
                                'controller' => '\\LeadersLinked\\Controller\\CompanyController',
3072
                                'action' => 'iWorkWith'
3043
                                'action' => 'iWorkWith',
3073
                            ]
3044
                            ],
3074
                        ],
3045
                        ],
3075
                        'may_terminate' => true
3046
                        'may_terminate' => true,
3076
                    ],
3047
                    ],
3077
                    'my-companies' => [
3048
                    'my-companies' => [
3078
                        'type' => Literal::class,
3049
                        'type' => Literal::class,
3079
                        'options' => [
3050
                        'options' => [
3080
                            'route' => '/my-companies',
3051
                            'route' => '/my-companies',
3081
                            'defaults' => [
3052
                            'defaults' => [
3082
                                'controller' => '\LeadersLinked\Controller\MyCompaniesController',
3053
                                'controller' => '\\LeadersLinked\\Controller\\MyCompaniesController',
3083
                                'action' => 'index'
3054
                                'action' => 'index',
3084
                            ]
3055
                            ],
3085
                        ],
3056
                        ],
3086
                        'may_terminate' => true,
3057
                        'may_terminate' => true,
3087
                        'child_routes' => [
3058
                        'child_routes' => [
3088
                            'add' => [
3059
                            'add' => [
3089
                                'type' => Literal::class,
3060
                                'type' => Literal::class,
3090
                                'options' => [
3061
                                'options' => [
3091
                                    'route' => '/add',
3062
                                    'route' => '/add',
3092
                                    'defaults' => [
3063
                                    'defaults' => [
3093
                                        'controller' => '\LeadersLinked\Controller\MyCompaniesController',
3064
                                        'controller' => '\\LeadersLinked\\Controller\\MyCompaniesController',
3094
                                        'action' => 'add'
3065
                                        'action' => 'add',
3095
                                    ]
3066
                                    ],
3096
                                ]
3067
                                ],
3097
                            ]
3068
                            ],
3098
                        ]
3069
                        ],
3099
                    ]
3070
                    ],
3100
                ]
3071
                ],
3101
            ],
3072
            ],
3102
            'account-settings' => [
3073
            'account-settings' => [
3103
                'type' => Literal::class,
3074
                'type' => Literal::class,
3104
                'options' => [
3075
                'options' => [
3105
                    'route' => '/account-settings',
3076
                    'route' => '/account-settings',
3106
                    'defaults' => [
3077
                    'defaults' => [
3107
                        'controller' => '\LeadersLinked\Controller\AccountSettingController',
3078
                        'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3108
                        'action' => 'index'
3079
                        'action' => 'index',
3109
                    ]
3080
                    ],
3110
                ],
3081
                ],
3111
                'may_terminate' => true,
3082
                'may_terminate' => true,
3112
                'child_routes' => [
3083
                'child_routes' => [
3113
                    'image' => [
3084
                    'image' => [
3114
                        'type' => Segment::class,
3085
                        'type' => Segment::class,
3115
                        'options' => [
3086
                        'options' => [
3116
                            'route' => '/image/:operation',
3087
                            'route' => '/image/:operation',
3117
                            'cconstraints' => [
3088
                            'cconstraints' => [
3118
                                'operation' => 'upload|delete'
3089
                                'operation' => 'upload|delete',
3119
                            ],
3090
                            ],
3120
                            'defaults' => [
3091
                            'defaults' => [
3121
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3092
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3122
                                'action' => 'image',
3093
                                'action' => 'image',
3123
                                'operation' => 'upload'
3094
                                'operation' => 'upload',
3124
                            ]
3095
                            ],
3125
                        ]
3096
                        ],
3126
                    ],
3097
                    ],
3127
                    'deactivate' => [
3098
                    'deactivate' => [
3128
                        'type' => Literal::class,
3099
                        'type' => Literal::class,
3129
                        'options' => [
3100
                        'options' => [
3130
                            'route' => '/deactivate',
3101
                            'route' => '/deactivate',
3131
                            'defaults' => [
3102
                            'defaults' => [
3132
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3103
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3133
                                'action' => 'deactivate'
3104
                                'action' => 'deactivate',
3134
                            ]
3105
                            ],
3135
                        ]
3106
                        ],
3136
                    ],
3107
                    ],
3137
                    'notifications' => [
3108
                    'notifications' => [
3138
                        'type' => Literal::class,
3109
                        'type' => Literal::class,
3139
                        'options' => [
3110
                        'options' => [
3140
                            'route' => '/notification',
3111
                            'route' => '/notification',
3141
                            'defaults' => [
3112
                            'defaults' => [
3142
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3113
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3143
                                'action' => 'notification'
3114
                                'action' => 'notification',
3144
                            ]
3115
                            ],
3145
                        ]
3116
                        ],
3146
                    ],
3117
                    ],
3147
                    'password' => [
3118
                    'password' => [
3148
                        'type' => Literal::class,
3119
                        'type' => Literal::class,
3149
                        'options' => [
3120
                        'options' => [
3150
                            'route' => '/password',
3121
                            'route' => '/password',
3151
                            'defaults' => [
3122
                            'defaults' => [
3152
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3123
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3153
                                'action' => 'password'
3124
                                'action' => 'password',
3154
                            ]
3125
                            ],
3155
                        ]
3126
                        ],
3156
                    ],
3127
                    ],
3157
                    'add-facebook' => [
3128
                    'add-facebook' => [
3158
                        'type' => Literal::class,
3129
                        'type' => Literal::class,
3159
                        'options' => [
3130
                        'options' => [
3160
                            'route' => '/add-facebook',
3131
                            'route' => '/add-facebook',
3161
                            'defaults' => [
3132
                            'defaults' => [
3162
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3133
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3163
                                'action' => 'addFacebook'
3134
                                'action' => 'addFacebook',
3164
                            ]
3135
                            ],
3165
                        ]
3136
                        ],
3166
                    ],
3137
                    ],
3167
                    'remove-facebook' => [
3138
                    'remove-facebook' => [
3168
                        'type' => Literal::class,
3139
                        'type' => Literal::class,
3169
                        'options' => [
3140
                        'options' => [
3170
                            'route' => '/remove-facebook',
3141
                            'route' => '/remove-facebook',
3171
                            'defaults' => [
3142
                            'defaults' => [
3172
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3143
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3173
                                'action' => 'removeFacebook'
3144
                                'action' => 'removeFacebook',
3174
                            ]
3145
                            ],
3175
                        ]
3146
                        ],
3176
                    ],
3147
                    ],
3177
                    'add-twitter' => [
3148
                    'add-twitter' => [
3178
                        'type' => Literal::class,
3149
                        'type' => Literal::class,
3179
                        'options' => [
3150
                        'options' => [
3180
                            'route' => '/add-twitter',
3151
                            'route' => '/add-twitter',
3181
                            'defaults' => [
3152
                            'defaults' => [
3182
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3153
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3183
                                'action' => 'addTwitter'
3154
                                'action' => 'addTwitter',
3184
                            ]
3155
                            ],
3185
                        ]
3156
                        ],
3186
                    ],
3157
                    ],
3187
                    'remove-twitter' => [
3158
                    'remove-twitter' => [
3188
                        'type' => Literal::class,
3159
                        'type' => Literal::class,
3189
                        'options' => [
3160
                        'options' => [
3190
                            'route' => '/remove-twitter',
3161
                            'route' => '/remove-twitter',
3191
                            'defaults' => [
3162
                            'defaults' => [
3192
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3163
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3193
                                'action' => 'removeTwitter'
3164
                                'action' => 'removeTwitter',
3194
                            ]
3165
                            ],
3195
                        ]
3166
                        ],
3196
                    ],
3167
                    ],
3197
                    'add-google' => [
3168
                    'add-google' => [
3198
                        'type' => Literal::class,
3169
                        'type' => Literal::class,
3199
                        'options' => [
3170
                        'options' => [
3200
                            'route' => '/add-google',
3171
                            'route' => '/add-google',
3201
                            'defaults' => [
3172
                            'defaults' => [
3202
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3173
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3203
                                'action' => 'addGoogle'
3174
                                'action' => 'addGoogle',
3204
                            ]
3175
                            ],
3205
                        ]
3176
                        ],
3206
                    ],
3177
                    ],
3207
                    'remove-google' => [
3178
                    'remove-google' => [
3208
                        'type' => Literal::class,
3179
                        'type' => Literal::class,
3209
                        'options' => [
3180
                        'options' => [
3210
                            'route' => '/remove-google',
3181
                            'route' => '/remove-google',
3211
                            'defaults' => [
3182
                            'defaults' => [
3212
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3183
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3213
                                'action' => 'removeGoogle'
3184
                                'action' => 'removeGoogle',
3214
                            ]
3185
                            ],
3215
                        ]
3186
                        ],
3216
                    ],
3187
                    ],
3217
                    'location' => [
3188
                    'location' => [
3218
                        'type' => Literal::class,
3189
                        'type' => Literal::class,
3219
                        'options' => [
3190
                        'options' => [
3220
                            'route' => '/location',
3191
                            'route' => '/location',
3221
                            'defaults' => [
3192
                            'defaults' => [
3222
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3193
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3223
                                'action' => 'location'
3194
                                'action' => 'location',
3224
                            ]
3195
                            ],
3225
                        ]
3196
                        ],
3226
                    ],
3197
                    ],
3227
                    'privacy' => [
3198
                    'privacy' => [
3228
                        'type' => Literal::class,
3199
                        'type' => Literal::class,
3229
                        'options' => [
3200
                        'options' => [
3230
                            'route' => '/privacy',
3201
                            'route' => '/privacy',
3231
                            'defaults' => [
3202
                            'defaults' => [
3232
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3203
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3233
                                'action' => 'privacy'
3204
                                'action' => 'privacy',
3234
                            ]
3205
                            ],
3235
                        ]
3206
                        ],
3236
                    ],
3207
                    ],
3237
                    'basic' => [
3208
                    'basic' => [
3238
                        'type' => Literal::class,
3209
                        'type' => Literal::class,
3239
                        'options' => [
3210
                        'options' => [
3240
                            'route' => '/basic',
3211
                            'route' => '/basic',
3241
                            'defaults' => [
3212
                            'defaults' => [
3242
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3213
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3243
                                'action' => 'basic'
3214
                                'action' => 'basic',
3244
                            ]
3215
                            ],
3245
                        ]
3216
                        ],
3246
                    ],
3217
                    ],
3247
                    'transactions' => [
3218
                    'transactions' => [
3248
                        'type' => Literal::class,
3219
                        'type' => Literal::class,
3249
                        'options' => [
3220
                        'options' => [
3250
                            'route' => '/transactions',
3221
                            'route' => '/transactions',
3251
                            'defaults' => [
3222
                            'defaults' => [
3252
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3223
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3253
                                'action' => 'transactions'
3224
                                'action' => 'transactions',
3254
                            ]
3225
                            ],
3255
                        ],
3226
                        ],
3256
                        'may_terminate' => true,
3227
                        'may_terminate' => true,
3257
                        'child_routes' => [
3228
                        'child_routes' => [
3258
                            'add-funds' => [
3229
                            'add-funds' => [
3259
                                'type' => Literal::class,
3230
                                'type' => Literal::class,
3260
                                'options' => [
3231
                                'options' => [
3261
                                    'route' => '/add-funds',
3232
                                    'route' => '/add-funds',
3262
                                    'defaults' => [
3233
                                    'defaults' => [
3263
                                        'controller' => '\LeadersLinked\Controller\AccountSettingController',
3234
                                        'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3264
                                        'action' => 'addFund'
3235
                                        'action' => 'addFund',
3265
                                    ]
3236
                                    ],
3266
                                ]
3237
                                ],
3267
                            ]
3238
                            ],
3268
                        ]
3239
                        ],
3269
                    ],
3240
                    ],
3270
                    'browsers' => [
3241
                    'browsers' => [
3271
                        'type' => Literal::class,
3242
                        'type' => Literal::class,
3272
                        'options' => [
3243
                        'options' => [
3273
                            'route' => '/browsers',
3244
                            'route' => '/browsers',
3274
                            'defaults' => [
3245
                            'defaults' => [
3275
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3246
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3276
                                'action' => 'browsers'
3247
                                'action' => 'browsers',
3277
                            ]
3248
                            ],
3278
                        ]
3249
                        ],
3279
                    ],
3250
                    ],
3280
                    'ips' => [
3251
                    'ips' => [
3281
                        'type' => Literal::class,
3252
                        'type' => Literal::class,
3282
                        'options' => [
3253
                        'options' => [
3283
                            'route' => '/ips',
3254
                            'route' => '/ips',
3284
                            'defaults' => [
3255
                            'defaults' => [
3285
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3256
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3286
                                'action' => 'ips'
3257
                                'action' => 'ips',
3287
                            ]
3258
                            ],
3288
                        ]
3259
                        ],
3289
                    ],
3260
                    ],
3290
                    'devices' => [
3261
                    'devices' => [
3291
                        'type' => Literal::class,
3262
                        'type' => Literal::class,
3292
                        'options' => [
3263
                        'options' => [
3293
                            'route' => '/devices',
3264
                            'route' => '/devices',
3294
                            'defaults' => [
3265
                            'defaults' => [
3295
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3266
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3296
                                'action' => 'devices'
3267
                                'action' => 'devices',
3297
                            ]
3268
                            ],
3298
                        ]
3269
                        ],
3299
                    ],
3270
                    ],
3300
                    'delete-account' => [
3271
                    'delete-account' => [
3301
                        'type' => Literal::class,
3272
                        'type' => Literal::class,
3302
                        'options' => [
3273
                        'options' => [
3303
                            'route' => '/delete-account',
3274
                            'route' => '/delete-account',
3304
                            'defaults' => [
3275
                            'defaults' => [
3305
                                'controller' => '\LeadersLinked\Controller\AccountSettingController',
3276
                                'controller' => '\\LeadersLinked\\Controller\\AccountSettingController',
3306
                                'action' => 'deleteAccount'
3277
                                'action' => 'deleteAccount',
3307
                            ]
3278
                            ],
3308
                        ]
3279
                        ],
3309
                    ]
3280
                    ],
3310
                ],
3281
                ],
3311
                'may_terminate' => true
3282
                'may_terminate' => true,
3312
            ],
3283
            ],
3313
            'moodle' => [
3284
            'moodle' => [
3314
                'type' => Literal::class,
3285
                'type' => Literal::class,
3315
                'options' => [
3286
                'options' => [
3316
                    'route' => '/moodle',
3287
                    'route' => '/moodle',
3317
                    'defaults' => [
3288
                    'defaults' => [
3318
                        'controller' => '\LeadersLinked\Controller\MoodleController',
3289
                        'controller' => '\\LeadersLinked\\Controller\\MoodleController',
3319
                        'action' => 'index'
3290
                        'action' => 'index',
3320
                    ]
3291
                    ],
3321
                ],
3292
                ],
3322
                'may_terminate' => true
3293
                'may_terminate' => true,
3323
            ],
3294
            ],
3324
            'oauth' => [
3295
            'oauth' => [
3325
                'type' => Literal::class,
3296
                'type' => Literal::class,
3326
                'options' => [
3297
                'options' => [
3327
                    'route' => '/oauth',
3298
                    'route' => '/oauth',
3328
                    'defaults' => [
3299
                    'defaults' => [
3329
                        'controller' => '\LeadersLinked\Controller\OauthController',
3300
                        'controller' => '\\LeadersLinked\\Controller\\OauthController',
3330
                        'action' => 'index'
3301
                        'action' => 'index',
3331
                    ]
3302
                    ],
3332
                ],
3303
                ],
3333
                'may_terminate' => true,
3304
                'may_terminate' => true,
3334
                'child_routes' => [
3305
                'child_routes' => [
3335
                    'facebook' => [
3306
                    'facebook' => [
3336
                        'type' => Literal::class,
3307
                        'type' => Literal::class,
3337
                        'options' => [
3308
                        'options' => [
3338
                            'route' => '/facebook',
3309
                            'route' => '/facebook',
3339
                            'defaults' => [
3310
                            'defaults' => [
3340
                                'controller' => '\LeadersLinked\Controller\OauthController',
3311
                                'controller' => '\\LeadersLinked\\Controller\\OauthController',
3341
                                'action' => 'facebook'
3312
                                'action' => 'facebook',
3342
                            ]
3313
                            ],
3343
                        ],
3314
                        ],
3344
                        'may_terminate' => true,
3315
                        'may_terminate' => true,
3345
                        'child_routes' => [
3316
                        'child_routes' => [
3346
                            'delete' => [
3317
                            'delete' => [
3347
                                'type' => Literal::class,
3318
                                'type' => Literal::class,
3348
                                'options' => [
3319
                                'options' => [
3349
                                    'route' => '/delete',
3320
                                    'route' => '/delete',
3350
                                    'defaults' => [
3321
                                    'defaults' => [
3351
                                        'controller' => '\LeadersLinked\Controller\OauthController',
3322
                                        'controller' => '\\LeadersLinked\\Controller\\OauthController',
3352
                                        'action' => 'facebookDelete'
3323
                                        'action' => 'facebookDelete',
3353
                                    ]
3324
                                    ],
3354
                                ],
3325
                                ],
3355
                                'may_terminate' => true
3326
                                'may_terminate' => true,
3356
                            ],
3327
                            ],
3357
                            'cancel' => [
3328
                            'cancel' => [
3358
                                'type' => Literal::class,
3329
                                'type' => Literal::class,
3359
                                'options' => [
3330
                                'options' => [
3360
                                    'route' => '/cancel',
3331
                                    'route' => '/cancel',
3361
                                    'defaults' => [
3332
                                    'defaults' => [
3362
                                        'controller' => '\LeadersLinked\Controller\OauthController',
3333
                                        'controller' => '\\LeadersLinked\\Controller\\OauthController',
3363
                                        'action' => 'facebookCancel'
3334
                                        'action' => 'facebookCancel',
3364
                                    ]
3335
                                    ],
3365
                                ],
3336
                                ],
3366
                                'may_terminate' => true
3337
                                'may_terminate' => true,
3367
                            ]
3338
                            ],
3368
                        ]
3339
                        ],
3369
                    ],
3340
                    ],
3370
                    'twitter' => [
3341
                    'twitter' => [
3371
                        'type' => Literal::class,
3342
                        'type' => Literal::class,
3372
                        'options' => [
3343
                        'options' => [
3373
                            'route' => '/twitter',
3344
                            'route' => '/twitter',
3374
                            'defaults' => [
3345
                            'defaults' => [
3375
                                'controller' => '\LeadersLinked\Controller\OauthController',
3346
                                'controller' => '\\LeadersLinked\\Controller\\OauthController',
3376
                                'action' => 'twitter'
3347
                                'action' => 'twitter',
3377
                            ]
3348
                            ],
3378
                        ],
3349
                        ],
3379
                        'may_terminate' => true
3350
                        'may_terminate' => true,
3380
                    ],
3351
                    ],
3381
                    'google' => [
3352
                    'google' => [
3382
                        'type' => Literal::class,
3353
                        'type' => Literal::class,
3383
                        'options' => [
3354
                        'options' => [
3384
                            'route' => '/google',
3355
                            'route' => '/google',
3385
                            'defaults' => [
3356
                            'defaults' => [
3386
                                'controller' => '\LeadersLinked\Controller\OauthController',
3357
                                'controller' => '\\LeadersLinked\\Controller\\OauthController',
3387
                                'action' => 'google'
3358
                                'action' => 'google',
3388
                            ]
3359
                            ],
3389
                        ],
3360
                        ],
3390
                        'may_terminate' => true
3361
                        'may_terminate' => true,
3391
                    ]
3362
                    ],
3392
                    /*
3363
                    /*
3393
                 * 'facebook' => [
3364
                 * 'facebook' => [
3394
                 * 'type' => Literal::class,
3365
                 * 'type' => Literal::class,
3395
                 * 'options' => [
3366
                 * 'options' => [
3396
                 * 'route' => '/facebook',
3367
                 * 'route' => '/facebook',
3397
                 * 'defaults' => [
3368
                 * 'defaults' => [
3398
                 * 'controller' => '\LeadersLinked\Controller\OauthController',
3369
                 * 'controller' => '\\LeadersLinked\\Controller\\OauthController',
3399
                 * 'action' => 'facebook'
3370
                 * 'action' => 'facebook'
3400
                 * ]
3371
                 * ]
3401
                 * ],
3372
                 * ],
3402
                 * 'may_terminate' => true,
3373
                 * 'may_terminate' => true,
3403
                 * 'child_routes' => [
3374
                 * 'child_routes' => [
3404
                 * 'cancel' => [
3375
                 * 'cancel' => [
3405
                 * 'type' => Literal::class,
3376
                 * 'type' => Literal::class,
3406
                 * 'options' => [
3377
                 * 'options' => [
3407
                 * 'route' => '/cancel',
3378
                 * 'route' => '/cancel',
3408
                 * 'defaults' => [
3379
                 * 'defaults' => [
3409
                 * 'controller' => '\LeadersLinked\Controller\OauthController',
3380
                 * 'controller' => '\\LeadersLinked\\Controller\\OauthController',
3410
                 * 'action' => 'facebookCancel'
3381
                 * 'action' => 'facebookCancel'
3411
                 * ]
3382
                 * ]
3412
                 * ]
3383
                 * ]
3413
                 * ],
3384
                 * ],
3414
                 * 'delete' => [
3385
                 * 'delete' => [
3415
                 * 'type' => Literal::class,
3386
                 * 'type' => Literal::class,
3416
                 * 'options' => [
3387
                 * 'options' => [
3417
                 * 'route' => '/delete',
3388
                 * 'route' => '/delete',
3418
                 * 'defaults' => [
3389
                 * 'defaults' => [
3419
                 * 'controller' => '\LeadersLinked\Controller\OauthController',
3390
                 * 'controller' => '\\LeadersLinked\\Controller\\OauthController',
3420
                 * 'action' => 'facebookDelete'
3391
                 * 'action' => 'facebookDelete'
3421
                 * ]
3392
                 * ]
3422
                 * ]
3393
                 * ]
3423
                 * ]
3394
                 * ]
3424
                 * ]
3395
                 * ]
3425
                 * ]
3396
                 * ]
3426
                 */
3397
                 */
3427
                ]
3398
                ],
3428
            ],
3399
            ],
3429
            'daily-pulse' => [
3400
            'daily-pulse' => [
3430
                'type' => Literal::class,
3401
                'type' => Literal::class,
3431
                'options' => [
3402
                'options' => [
3432
                    'route' => '/daily-pulse',
3403
                    'route' => '/daily-pulse',
3433
                    'defaults' => [
3404
                    'defaults' => [
3434
                        'controller' => '\LeadersLinked\Controller\DailyPulseController',
3405
                        'controller' => '\\LeadersLinked\\Controller\\DailyPulseController',
3435
                        'action' => 'index'
3406
                        'action' => 'index',
3436
                    ]
3407
                    ],
3437
                ],
3408
                ],
3438
                'may_terminate' => true,
3409
                'may_terminate' => true,
3439
                'child_routes' => [
3410
                'child_routes' => [
3440
                    'how_are_you_feel' => [
3411
                    'how_are_you_feel' => [
3441
                        'type' => Segment::class,
3412
                        'type' => Segment::class,
3442
                        'options' => [
3413
                        'options' => [
3443
                            'route' => '/how_are_you_feel/:id',
3414
                            'route' => '/how_are_you_feel/:id',
3444
                            'constraints' => [
3415
                            'constraints' => [
3445
                                'id' => '[A-Za-z0-9\-]+\=*'
3416
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3446
                            ],
3417
                            ],
3447
                            'defaults' => [
3418
                            'defaults' => [
3448
                                'controller' => '\LeadersLinked\Controller\DailyPulseController',
3419
                                'controller' => '\\LeadersLinked\\Controller\\DailyPulseController',
3449
                                'action' => 'howAreYouFeel'
3420
                                'action' => 'howAreYouFeel',
3450
                            ]
3421
                            ],
3451
                        ]
3422
                        ],
3452
                    ],
3423
                    ],
3453
                    'climate_on_your_organization' => [
3424
                    'climate_on_your_organization' => [
3454
                        'type' => Segment::class,
3425
                        'type' => Segment::class,
3455
                        'options' => [
3426
                        'options' => [
3456
                            'route' => '/climate_on_your_organization/:id',
3427
                            'route' => '/climate_on_your_organization/:id',
3457
                            'constraints' => [
3428
                            'constraints' => [
3458
                                'id' => '[A-Za-z0-9\-]+\=*'
3429
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3459
                            ],
3430
                            ],
3460
                            'defaults' => [
3431
                            'defaults' => [
3461
                                'controller' => '\LeadersLinked\Controller\DailyPulseController',
3432
                                'controller' => '\\LeadersLinked\\Controller\\DailyPulseController',
3462
                                'action' => 'climateOnYourOrganization'
3433
                                'action' => 'climateOnYourOrganization',
3463
                            ]
3434
                            ],
3464
                        ]
3435
                        ],
3465
                    ]
3436
                    ],
3466
                ]
3437
                ],
3467
            ],
3438
            ],
3468
 
-
 
3469
            'helpers' => [
3439
            'helpers' => [
3470
                'type' => Literal::class,
3440
                'type' => Literal::class,
3471
                'options' => [
3441
                'options' => [
3472
                    'route' => '/helpers',
3442
                    'route' => '/helpers',
3473
                    'defaults' => [
3443
                    'defaults' => [
3474
                        'controller' => '\LeadersLinked\Controller\HelperController',
3444
                        'controller' => '\\LeadersLinked\\Controller\\HelperController',
3475
                        'action' => 'index'
3445
                        'action' => 'index',
3476
                    ]
3446
                    ],
3477
                ],
3447
                ],
3478
                'may_terminate' => true,
3448
                'may_terminate' => true,
3479
                'child_routes' => [
3449
                'child_routes' => [
3480
                    'menu' => [
3450
                    'menu' => [
3481
                        'type' => Literal::class,
3451
                        'type' => Literal::class,
3482
                        'options' => [
3452
                        'options' => [
3483
                            'route' => '/menu',
3453
                            'route' => '/menu',
3484
                            'defaults' => [
3454
                            'defaults' => [
3485
                                'controller' => '\LeadersLinked\Controller\HelperController',
3455
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3486
                                'action' => 'menu'
3456
                                'action' => 'menu',
3487
                            ]
3457
                            ],
3488
                        ]
3458
                        ],
3489
                    ],
3459
                    ],
3490
 
-
 
3491
                    'search-people' => [
3460
                    'search-people' => [
3492
                        'type' => Literal::class,
3461
                        'type' => Literal::class,
3493
                        'options' => [
3462
                        'options' => [
3494
                            'route' => '/search-people',
3463
                            'route' => '/search-people',
3495
                            'defaults' => [
3464
                            'defaults' => [
3496
                                'controller' => '\LeadersLinked\Controller\HelperController',
3465
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3497
                                'action' => 'searchPeople'
3466
                                'action' => 'searchPeople',
3498
                            ]
3467
                            ],
3499
                        ]
3468
                        ],
3500
                    ],
3469
                    ],
3501
                    'company-suggestion' => [
3470
                    'company-suggestion' => [
3502
                        'type' => Segment::class,
3471
                        'type' => Segment::class,
3503
                        'options' => [
3472
                        'options' => [
3504
                            'route' => '/company-suggestion/:company_id',
3473
                            'route' => '/company-suggestion/:company_id',
3505
                            'constraints' => [
3474
                            'constraints' => [
3506
                                'company_id' => '[A-Za-z0-9\-]+\=*'
3475
                                'company_id' => '[A-Za-z0-9\\-]+\\=*',
3507
                            ],
3476
                            ],
3508
                            'defaults' => [
3477
                            'defaults' => [
3509
                                'controller' => '\LeadersLinked\Controller\HelperController',
3478
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3510
                                'action' => 'companySuggestion'
3479
                                'action' => 'companySuggestion',
3511
                            ]
3480
                            ],
3512
                        ]
3481
                        ],
3513
                    ],
3482
                    ],
3514
                    'posts' => [
3483
                    'posts' => [
3515
                        'type' => Literal::class,
3484
                        'type' => Literal::class,
3516
                        'options' => [
3485
                        'options' => [
3517
                            'route' => '/posts',
3486
                            'route' => '/posts',
3518
                            'defaults' => [
3487
                            'defaults' => [
3519
                                'controller' => '\LeadersLinked\Controller\HelperController',
3488
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3520
                                'action' => 'posts'
3489
                                'action' => 'posts',
3521
                            ]
3490
                            ],
3522
                        ]
3491
                        ],
3523
                    ],
3492
                    ],
3524
                    'people-you-may-know' => [
3493
                    'people-you-may-know' => [
3525
                        'type' => Literal::class,
3494
                        'type' => Literal::class,
3526
                        'options' => [
3495
                        'options' => [
3527
                            'route' => '/people-you-may-know',
3496
                            'route' => '/people-you-may-know',
3528
                            'defaults' => [
3497
                            'defaults' => [
3529
                                'controller' => '\LeadersLinked\Controller\HelperController',
3498
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3530
                                'action' => 'peopleYouMayKnow'
3499
                                'action' => 'peopleYouMayKnow',
3531
                            ]
3500
                            ],
3532
                        ]
3501
                        ],
3533
                    ],
3502
                    ],
3534
                    'people-viewed-profile' => [
3503
                    'people-viewed-profile' => [
3535
                        'type' => Segment::class,
3504
                        'type' => Segment::class,
3536
                        'options' => [
3505
                        'options' => [
3537
                            'route' => '/people-viewed-profile/:user_profile_id',
3506
                            'route' => '/people-viewed-profile/:user_profile_id',
3538
                            'constraints' => [
3507
                            'constraints' => [
3539
                                'user_profile_id' => '[A-Za-z0-9\-]+\=*'
3508
                                'user_profile_id' => '[A-Za-z0-9\\-]+\\=*',
3540
                            ],
3509
                            ],
3541
                            'defaults' => [
3510
                            'defaults' => [
3542
                                'controller' => '\LeadersLinked\Controller\HelperController',
3511
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3543
                                'action' => 'peopleViewedProfile'
3512
                                'action' => 'peopleViewedProfile',
3544
                            ]
3513
                            ],
3545
                        ]
3514
                        ],
3546
                    ],
3515
                    ],
3547
                    'company-follower' => [
3516
                    'company-follower' => [
3548
                        'type' => Segment::class,
3517
                        'type' => Segment::class,
3549
                        'options' => [
3518
                        'options' => [
3550
                            'route' => '/company-follower/:company_id',
3519
                            'route' => '/company-follower/:company_id',
3551
                            'constraints' => [
3520
                            'constraints' => [
3552
                                'company_id' => '[A-Za-z0-9\-]+\=*'
3521
                                'company_id' => '[A-Za-z0-9\\-]+\\=*',
3553
                            ],
3522
                            ],
3554
                            'defaults' => [
3523
                            'defaults' => [
3555
                                'controller' => '\LeadersLinked\Controller\HelperController',
3524
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3556
                                'action' => 'companyFollower'
3525
                                'action' => 'companyFollower',
3557
                            ]
3526
                            ],
3558
                        ]
3527
                        ],
3559
                    ],
3528
                    ],
3560
                    'group-members' => [
3529
                    'group-members' => [
3561
                        'type' => Segment::class,
3530
                        'type' => Segment::class,
3562
                        'options' => [
3531
                        'options' => [
3563
                            'route' => '/group-members/:group_id',
3532
                            'route' => '/group-members/:group_id',
3564
                            'constraints' => [
3533
                            'constraints' => [
3565
                                'group_id' => '[A-Za-z0-9\-]+\=*'
3534
                                'group_id' => '[A-Za-z0-9\\-]+\\=*',
3566
                            ],
3535
                            ],
3567
                            'defaults' => [
3536
                            'defaults' => [
3568
                                'controller' => '\LeadersLinked\Controller\HelperController',
3537
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3569
                                'action' => 'groupMembers'
3538
                                'action' => 'groupMembers',
3570
                            ]
3539
                            ],
3571
                        ],
3540
                        ],
3572
                        'may_terminate' => true,
3541
                        'may_terminate' => true,
3573
                        'child_routes' => [
3542
                        'child_routes' => [
3574
                            'invite' => [
3543
                            'invite' => [
3575
                                'type' => Literal::class,
3544
                                'type' => Literal::class,
3576
                                'options' => [
3545
                                'options' => [
3577
                                    'route' => '/invite',
3546
                                    'route' => '/invite',
3578
                                    'defaults' => [
3547
                                    'defaults' => [
3579
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3548
                                        'controller' => '\\LeadersLinked\\Controller\\HelperController',
3580
                                        'action' => 'groupMemberInvite'
3549
                                        'action' => 'groupMemberInvite',
3581
                                    ]
3550
                                    ],
3582
                                ]
3551
                                ],
3583
                            ],
3552
                            ],
3584
                            'reject' => [
3553
                            'reject' => [
3585
                                'type' => Segment::class,
3554
                                'type' => Segment::class,
3586
                                'options' => [
3555
                                'options' => [
3587
                                    'route' => '/reject/:user_id',
3556
                                    'route' => '/reject/:user_id',
3588
                                    'constraints' => [
3557
                                    'constraints' => [
3589
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
3558
                                        'user_id' => '[A-Za-z0-9\\-]+\\=*',
3590
                                    ],
3559
                                    ],
3591
                                    'defaults' => [
3560
                                    'defaults' => [
3592
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3561
                                        'controller' => '\\LeadersLinked\\Controller\\HelperController',
3593
                                        'action' => 'groupMemberReject'
3562
                                        'action' => 'groupMemberReject',
3594
                                    ]
3563
                                    ],
3595
                                ]
3564
                                ],
3596
                            ],
3565
                            ],
3597
                            'cancel' => [
3566
                            'cancel' => [
3598
                                'type' => Segment::class,
3567
                                'type' => Segment::class,
3599
                                'options' => [
3568
                                'options' => [
3600
                                    'route' => '/cancel/:user_id',
3569
                                    'route' => '/cancel/:user_id',
3601
                                    'constraints' => [
3570
                                    'constraints' => [
3602
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
3571
                                        'user_id' => '[A-Za-z0-9\\-]+\\=*',
3603
                                    ],
3572
                                    ],
3604
                                    'defaults' => [
3573
                                    'defaults' => [
3605
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3574
                                        'controller' => '\\LeadersLinked\\Controller\\HelperController',
3606
                                        'action' => 'groupMemberCancel'
3575
                                        'action' => 'groupMemberCancel',
3607
                                    ]
3576
                                    ],
3608
                                ]
3577
                                ],
3609
                            ],
3578
                            ],
3610
                            'approve' => [
3579
                            'approve' => [
3611
                                'type' => Segment::class,
3580
                                'type' => Segment::class,
3612
                                'options' => [
3581
                                'options' => [
3613
                                    'route' => '/approve/:user_id',
3582
                                    'route' => '/approve/:user_id',
3614
                                    'constraints' => [
3583
                                    'constraints' => [
3615
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
3584
                                        'user_id' => '[A-Za-z0-9\\-]+\\=*',
3616
                                    ],
3585
                                    ],
3617
                                    'defaults' => [
3586
                                    'defaults' => [
3618
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3587
                                        'controller' => '\\LeadersLinked\\Controller\\HelperController',
3619
                                        'action' => 'groupMemberApprove'
3588
                                        'action' => 'groupMemberApprove',
3620
                                    ]
3589
                                    ],
3621
                                ]
3590
                                ],
3622
                            ]
3591
                            ],
3623
                        ]
3592
                        ],
3624
                    ],
3593
                    ],
3625
                    'groups-suggestion' => [
3594
                    'groups-suggestion' => [
3626
                        'type' => Literal::class,
3595
                        'type' => Literal::class,
3627
                        'options' => [
3596
                        'options' => [
3628
                            'route' => '/groups-suggestion',
3597
                            'route' => '/groups-suggestion',
3629
                            'defaults' => [
3598
                            'defaults' => [
3630
                                'controller' => '\LeadersLinked\Controller\HelperController',
3599
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3631
                                'action' => 'groupsSuggestion'
3600
                                'action' => 'groupsSuggestion',
3632
                            ]
3601
                            ],
3633
                        ]
3602
                        ],
3634
                    ],
3603
                    ],
3635
                    'my-groups' => [
3604
                    'my-groups' => [
3636
                        'type' => Literal::class,
3605
                        'type' => Literal::class,
3637
                        'options' => [
3606
                        'options' => [
3638
                            'route' => '/my-groups',
3607
                            'route' => '/my-groups',
3639
                            'defaults' => [
3608
                            'defaults' => [
3640
                                'controller' => '\LeadersLinked\Controller\HelperController',
3609
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3641
                                'action' => 'myGroups'
3610
                                'action' => 'myGroups',
3642
                            ]
3611
                            ],
3643
                        ]
3612
                        ],
3644
                    ],
3613
                    ],
3645
                    'group-types' => [
3614
                    'group-types' => [
3646
                        'type' => Literal::class,
3615
                        'type' => Literal::class,
3647
                        'options' => [
3616
                        'options' => [
3648
                            'route' => '/group-types',
3617
                            'route' => '/group-types',
3649
                            'defaults' => [
3618
                            'defaults' => [
3650
                                'controller' => '\LeadersLinked\Controller\HelperController',
3619
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3651
                                'action' => 'groupTypes'
3620
                                'action' => 'groupTypes',
3652
                            ]
3621
                            ],
3653
                        ]
3622
                        ],
3654
                    ],
3623
                    ],
3655
                    'footer' => [
3624
                    'footer' => [
3656
                        'type' => Literal::class,
3625
                        'type' => Literal::class,
3657
                        'options' => [
3626
                        'options' => [
3658
                            'route' => '/footer',
3627
                            'route' => '/footer',
3659
                            'defaults' => [
3628
                            'defaults' => [
3660
                                'controller' => '\LeadersLinked\Controller\HelperController',
3629
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3661
                                'action' => 'footer'
3630
                                'action' => 'footer',
3662
                            ]
3631
                            ],
3663
                        ]
3632
                        ],
3664
                    ],
3633
                    ],
3665
                    'next-events' => [
3634
                    'next-events' => [
3666
                        'type' => Literal::class,
3635
                        'type' => Literal::class,
3667
                        'options' => [
3636
                        'options' => [
3668
                            'route' => '/next-events',
3637
                            'route' => '/next-events',
3669
                            'defaults' => [
3638
                            'defaults' => [
3670
                                'controller' => '\LeadersLinked\Controller\HelperController',
3639
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3671
                                'action' => 'nextEvents'
3640
                                'action' => 'nextEvents',
3672
                            ]
3641
                            ],
3673
                        ]
3642
                        ],
3674
                    ],
3643
                    ],
3675
                    'company-sizes' => [
3644
                    'company-sizes' => [
3676
                        'type' => Literal::class,
3645
                        'type' => Literal::class,
3677
                        'options' => [
3646
                        'options' => [
3678
                            'route' => '/company-sizes',
3647
                            'route' => '/company-sizes',
3679
                            'defaults' => [
3648
                            'defaults' => [
3680
                                'controller' => '\LeadersLinked\Controller\HelperController',
3649
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3681
                                'action' => 'companySizes'
3650
                                'action' => 'companySizes',
3682
                            ]
3651
                            ],
3683
                        ]
3652
                        ],
3684
                    ],
3653
                    ],
3685
                    'degrees' => [
3654
                    'degrees' => [
3686
                        'type' => Literal::class,
3655
                        'type' => Literal::class,
3687
                        'options' => [
3656
                        'options' => [
3688
                            'route' => '/degrees',
3657
                            'route' => '/degrees',
3689
                            'defaults' => [
3658
                            'defaults' => [
3690
                                'controller' => '\LeadersLinked\Controller\HelperController',
3659
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3691
                                'action' => 'degrees'
3660
                                'action' => 'degrees',
3692
                            ]
3661
                            ],
3693
                        ]
3662
                        ],
3694
                    ],
3663
                    ],
3695
                    'languages' => [
3664
                    'languages' => [
3696
                        'type' => Literal::class,
3665
                        'type' => Literal::class,
3697
                        'options' => [
3666
                        'options' => [
3698
                            'route' => '/languages',
3667
                            'route' => '/languages',
3699
                            'defaults' => [
3668
                            'defaults' => [
3700
                                'controller' => '\LeadersLinked\Controller\HelperController',
3669
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3701
                                'action' => 'languages'
3670
                                'action' => 'languages',
3702
                            ]
3671
                            ],
3703
                        ]
3672
                        ],
3704
                    ],
3673
                    ],
3705
 
-
 
3706
                    'skills' => [
3674
                    'skills' => [
3707
                        'type' => Literal::class,
3675
                        'type' => Literal::class,
3708
                        'options' => [
3676
                        'options' => [
3709
                            'route' => '/skills',
3677
                            'route' => '/skills',
3710
                            'defaults' => [
3678
                            'defaults' => [
3711
                                'controller' => '\LeadersLinked\Controller\HelperController',
3679
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3712
                                'action' => 'skills'
3680
                                'action' => 'skills',
3713
                            ]
3681
                            ],
3714
                        ]
3682
                        ],
3715
                    ],
3683
                    ],
3716
 
-
 
3717
                    'aptitudes' => [
3684
                    'aptitudes' => [
3718
                        'type' => Literal::class,
3685
                        'type' => Literal::class,
3719
                        'options' => [
3686
                        'options' => [
3720
                            'route' => '/aptitudes',
3687
                            'route' => '/aptitudes',
3721
                            'defaults' => [
3688
                            'defaults' => [
3722
                                'controller' => '\LeadersLinked\Controller\HelperController',
3689
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3723
                                'action' => 'aptitudes'
3690
                                'action' => 'aptitudes',
3724
                            ]
3691
                            ],
3725
                        ]
3692
                        ],
3726
                    ],
3693
                    ],
3727
 
-
 
3728
                    'hobbies' => [
3694
                    'hobbies' => [
3729
                        'type' => Literal::class,
3695
                        'type' => Literal::class,
3730
                        'options' => [
3696
                        'options' => [
3731
                            'route' => '/hobbies',
3697
                            'route' => '/hobbies',
3732
                            'defaults' => [
3698
                            'defaults' => [
3733
                                'controller' => '\LeadersLinked\Controller\HelperController',
3699
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3734
                                'action' => 'hobbies'
3700
                                'action' => 'hobbies',
3735
                            ]
3701
                            ],
3736
                        ]
3702
                        ],
3737
                    ],
3703
                    ],
3738
 
-
 
3739
                    'industries' => [
3704
                    'industries' => [
3740
                        'type' => Literal::class,
3705
                        'type' => Literal::class,
3741
                        'options' => [
3706
                        'options' => [
3742
                            'route' => '/industries',
3707
                            'route' => '/industries',
3743
                            'defaults' => [
3708
                            'defaults' => [
3744
                                'controller' => '\LeadersLinked\Controller\HelperController',
3709
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3745
                                'action' => 'industries'
3710
                                'action' => 'industries',
3746
                            ]
3711
                            ],
3747
                        ]
3712
                        ],
3748
                    ],
3713
                    ],
3749
 
-
 
3750
                    'timezones' => [
3714
                    'timezones' => [
3751
                        'type' => Literal::class,
3715
                        'type' => Literal::class,
3752
                        'options' => [
3716
                        'options' => [
3753
                            'route' => '/timezones',
3717
                            'route' => '/timezones',
3754
                            'defaults' => [
3718
                            'defaults' => [
3755
                                'controller' => '\LeadersLinked\Controller\HelperController',
3719
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3756
                                'action' => 'timeZones'
3720
                                'action' => 'timeZones',
3757
                            ]
3721
                            ],
3758
                        ]
3722
                        ],
3759
                    ],
3723
                    ],
3760
 
-
 
3761
                    'abuse-report' => [
3724
                    'abuse-report' => [
3762
                        'type' => Segment::class,
3725
                        'type' => Segment::class,
3763
                        'options' => [
3726
                        'options' => [
3764
                            'route' => '/abuse-report/:type/:id',
3727
                            'route' => '/abuse-report/:type/:id',
3765
                            'constraints' => [
3728
                            'constraints' => [
3766
                                'type' => 'feed|post|comment|message|chat-message|chat-group-message',
3729
                                'type' => 'feed|post|comment|message|chat-message|chat-group-message',
3767
                                'id' => '[A-Za-z0-9\-]+\=*'
3730
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3768
                            ],
3731
                            ],
3769
                            'defaults' => [
3732
                            'defaults' => [
3770
                                'controller' => '\LeadersLinked\Controller\HelperController',
3733
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3771
                                'action' => 'abuseReport'
3734
                                'action' => 'abuseReport',
3772
                            ]
3735
                            ],
3773
                        ]
3736
                        ],
3774
                    ],
3737
                    ],
3775
 
-
 
3776
                    'habits-and-skills' => [
3738
                    'habits-and-skills' => [
3777
                        'type' => Literal::class,
3739
                        'type' => Literal::class,
3778
                        'options' => [
3740
                        'options' => [
3779
                            'route' => '/habits-and-skills',
3741
                            'route' => '/habits-and-skills',
3780
 
-
 
3781
                            'defaults' => [
3742
                            'defaults' => [
3782
                                'controller' => '\LeadersLinked\Controller\HelperController',
3743
                                'controller' => '\\LeadersLinked\\Controller\\HelperController',
3783
                                'action' => 'habitsAndSkills'
3744
                                'action' => 'habitsAndSkills',
3784
                            ]
3745
                            ],
3785
                        ],
3746
                        ],
3786
                        'may_terminate' => true,
3747
                        'may_terminate' => true,
3787
                        'child_routes' => [
3748
                        'child_routes' => [
3788
                            'get' => [
3749
                            'get' => [
3789
                                'type' => Segment::class,
3750
                                'type' => Segment::class,
3790
                                'options' => [
3751
                                'options' => [
3791
                                    'route' => '/get/:id',
3752
                                    'route' => '/get/:id',
3792
                                    'constraints' => [
3753
                                    'constraints' => [
3793
                                        'id' => '[A-Za-z0-9\-]+\=*'
3754
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
3794
                                    ],
3755
                                    ],
3795
                                    'defaults' => [
3756
                                    'defaults' => [
3796
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3757
                                        'controller' => '\\LeadersLinked\\Controller\\HelperController',
3797
                                        'action' => 'habitsAndSkillsGet'
3758
                                        'action' => 'habitsAndSkillsGet',
3798
                                    ]
3759
                                    ],
3799
                                ]
3760
                                ],
3800
                            ],
3761
                            ],
3801
                            'my' => [
3762
                            'my' => [
3802
                                'type' => Literal::class,
3763
                                'type' => Literal::class,
3803
                                'options' => [
3764
                                'options' => [
3804
                                    'route' => '/my',
3765
                                    'route' => '/my',
3805
                                    'defaults' => [
3766
                                    'defaults' => [
3806
                                        'controller' => '\LeadersLinked\Controller\HelperController',
3767
                                        'controller' => '\\LeadersLinked\\Controller\\HelperController',
3807
                                        'action' => 'myHabitsAndSkillsGet'
3768
                                        'action' => 'myHabitsAndSkillsGet',
3808
                                    ]
3769
                                    ],
3809
                                ]
3770
                                ],
3810
                            ]
3771
                            ],
3811
                        ]
3772
                        ],
3812
                    ]
3773
                    ],
3813
                ]
3774
                ],
3814
            ],
3775
            ],
3815
            'help' => [
3776
            'help' => [
3816
                'type' => Literal::class,
3777
                'type' => Literal::class,
3817
                'options' => [
3778
                'options' => [
3818
                    'route' => '/help',
3779
                    'route' => '/help',
3819
                    'defaults' => [
3780
                    'defaults' => [
3820
                        'controller' => '\LeadersLinked\Controller\HelpController',
3781
                        'controller' => '\\LeadersLinked\\Controller\\HelpController',
3821
                        'action' => 'send'
3782
                        'action' => 'send',
3822
                    ]
3783
                    ],
3823
                ],
3784
                ],
3824
                'may_terminate' => true
3785
                'may_terminate' => true,
3825
            ],
3786
            ],
3826
 
-
 
3827
            'marketplace' => [
3787
            'marketplace' => [
3828
                'type' => Literal::class,
3788
                'type' => Literal::class,
3829
                'options' => [
3789
                'options' => [
3830
                    'route' => '/marketplace',
3790
                    'route' => '/marketplace',
3831
                    'defaults' => [
3791
                    'defaults' => [
3832
                        'controller' => '\LeadersLinked\Controller\MarketPlaceController',
3792
                        'controller' => '\\LeadersLinked\\Controller\\MarketPlaceController',
3833
                        'action' => 'index'
3793
                        'action' => 'index',
3834
                    ]
3794
                    ],
3835
                ],
3795
                ],
3836
                'may_terminate' => true,
3796
                'may_terminate' => true,
3837
                'child_routes' => [
3797
                'child_routes' => [
3838
                    'categories' => [
3798
                    'categories' => [
3839
                        'type' => Segment::class,
3799
                        'type' => Segment::class,
3840
                        'options' => [
3800
                        'options' => [
3841
                            'route' => '/categories',
3801
                            'route' => '/categories',
3842
                            'defaults' => [
3802
                            'defaults' => [
3843
                                'controller' => '\LeadersLinked\Controller\MarketPlaceController',
3803
                                'controller' => '\\LeadersLinked\\Controller\\MarketPlaceController',
3844
                                'action' => 'getCategories'
3804
                                'action' => 'getCategories',
3845
                            ]
3805
                            ],
3846
                        ]
3806
                        ],
3847
                    ],
3807
                    ],
3848
                    'enroll' => [
3808
                    'enroll' => [
3849
                        'type' => Segment::class,
3809
                        'type' => Segment::class,
3850
                        'options' => [
3810
                        'options' => [
3851
                            'route' => '/enroll/:company_id/:topic_id/:capsule_id',
3811
                            'route' => '/enroll/:company_id/:topic_id/:capsule_id',
3852
                            'constraints' => [
3812
                            'constraints' => [
3853
                                'company_id' => '[A-Za-z0-9\-]+\=*',
3813
                                'company_id' => '[A-Za-z0-9\\-]+\\=*',
3854
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
3814
                                'topic_id' => '[A-Za-z0-9\\-]+\\=*',
3855
                                'capsule_id' => '[A-Za-z0-9\-]+\=*'
3815
                                'capsule_id' => '[A-Za-z0-9\\-]+\\=*',
3856
                            ],
3816
                            ],
3857
                            'defaults' => [
3817
                            'defaults' => [
3858
                                'controller' => '\LeadersLinked\Controller\MarketPlaceController',
3818
                                'controller' => '\\LeadersLinked\\Controller\\MarketPlaceController',
3859
                                'action' => 'enroll'
3819
                                'action' => 'enroll',
3860
                            ]
3820
                            ],
3861
                        ]
3821
                        ],
3862
                    ],
3822
                    ],
3863
                    'claim' => [
3823
                    'claim' => [
3864
                        'type' => Segment::class,
3824
                        'type' => Segment::class,
3865
                        'options' => [
3825
                        'options' => [
3866
                            'route' => '/claim/:id',
3826
                            'route' => '/claim/:id',
3867
                            'constraints' => [
3827
                            'constraints' => [
3868
                                'id' => '[A-Za-z0-9\-]+\=*'
3828
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3869
                            ],
3829
                            ],
3870
                            'defaults' => [
3830
                            'defaults' => [
3871
                                'controller' => '\LeadersLinked\Controller\MarketPlaceController',
3831
                                'controller' => '\\LeadersLinked\\Controller\\MarketPlaceController',
3872
                                'action' => 'claim'
3832
                                'action' => 'claim',
3873
                            ]
3833
                            ],
3874
                        ]
3834
                        ],
3875
                    ]
3835
                    ],
3876
                ]
3836
                ],
3877
            ],
3837
            ],
3878
            'microlearning' => [
3838
            'microlearning' => [
3879
                'type' => Literal::class,
3839
                'type' => Literal::class,
3880
                'options' => [
3840
                'options' => [
3881
                    'route' => '/microlearning',
3841
                    'route' => '/microlearning',
3882
                    'defaults' => [
3842
                    'defaults' => [
3883
                        'controller' => '\LeadersLinked\Controller\MicrolearningController',
3843
                        'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
3884
                        'action' => 'index'
3844
                        'action' => 'index',
3885
                    ]
3845
                    ],
3886
                ],
3846
                ],
3887
                'may_terminate' => true,
3847
                'may_terminate' => true,
3888
                'child_routes' => [
3848
                'child_routes' => [
3889
                    'profile' => [
3849
                    'profile' => [
3890
                        'type' => Segment::class,
3850
                        'type' => Segment::class,
3891
                        'options' => [
3851
                        'options' => [
3892
                            'route' => '/profile',
3852
                            'route' => '/profile',
3893
                            'defaults' => [
3853
                            'defaults' => [
3894
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3854
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
3895
                                'action' => 'profile'
3855
                                'action' => 'profile',
3896
                            ]
3856
                            ],
3897
                        ]
3857
                        ],
3898
                    ],
3858
                    ],
3899
                    'companies' => [
3859
                    'companies' => [
3900
                        'type' => Segment::class,
3860
                        'type' => Segment::class,
3901
                        'options' => [
3861
                        'options' => [
3902
                            'route' => '/companies',
3862
                            'route' => '/companies',
3903
                            'defaults' => [
3863
                            'defaults' => [
3904
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3864
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
3905
                                'action' => 'companies'
3865
                                'action' => 'companies',
3906
                            ]
3866
                            ],
3907
                        ]
3867
                        ],
3908
                    ],
3868
                    ],
3909
                    'progress' => [
3869
                    'progress' => [
3910
                        'type' => Segment::class,
3870
                        'type' => Segment::class,
3911
                        'options' => [
3871
                        'options' => [
3912
                            'route' => '/progress/:id',
3872
                            'route' => '/progress/:id',
3913
                            'constraints' => [
3873
                            'constraints' => [
3914
                                'id' => '[A-Za-z0-9\-]+\=*'
3874
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3915
                            ],
3875
                            ],
3916
                            'defaults' => [
3876
                            'defaults' => [
3917
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3877
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
3918
                                'action' => 'progress'
3878
                                'action' => 'progress',
3919
                            ]
3879
                            ],
3920
                        ]
3880
                        ],
3921
                    ],
3881
                    ],
3922
                    'timeline' => [
3882
                    'timeline' => [
3923
                        'type' => Segment::class,
3883
                        'type' => Segment::class,
3924
                        'options' => [
3884
                        'options' => [
3925
                            'route' => '/timeline',
3885
                            'route' => '/timeline',
3926
                            'defaults' => [
3886
                            'defaults' => [
3927
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3887
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
3928
                                'action' => 'timeline'
3888
                                'action' => 'timeline',
3929
                            ]
3889
                            ],
3930
                        ]
3890
                        ],
3931
                    ],
3891
                    ],
3932
                    'topics' => [
3892
                    'topics' => [
3933
                        'type' => Segment::class,
3893
                        'type' => Segment::class,
3934
                        'options' => [
3894
                        'options' => [
3935
                            'route' => '/topics',
3895
                            'route' => '/topics',
3936
                            'defaults' => [
3896
                            'defaults' => [
3937
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
-
 
3938
                                'action' => 'topics'
3897
                                'action' => 'topics',
3939
                            ]
3898
                            ],
3940
                        ],
3899
                        ],
3941
                        'may_terminate' => true,
3900
                        'may_terminate' => true,
3942
                        'child_routes' => [
3901
                        'child_routes' => [
3943
                            '' => [ // Changed from 'get' to an empty string
3902
                            'topic' => [
3944
                                'type' => Segment::class,
3903
                                'type' => Segment::class,
3945
                                'options' => [
3904
                                'options' => [
3946
                                    'route' => ':id', // Changed from '/:id' to 'id'
3905
                                    'route' => '/:id',
3947
                                    'constraints' => [
3906
                                    'constraints' => [
3948
                                        'id' => '[A-Za-z0-9\-]+\=*',
3907
                                        'id' => '[A-Za-z0-9\\-]+\\=*',
3949
                                    ],
3908
                                    ],
3950
                                    'defaults' => [
3909
                                    'defaults' => [
3951
                                        'controller' => '\LeadersLinked\Controller\MicrolearningController',
-
 
3952
                                        'action' => 'getTopic',
3910
                                        'action' => 'getTopic',
3953
                                    ]
3911
                                    ],
3954
                                ],
3912
                                ],
3955
                                'may_terminate' => true
-
 
3956
                            ]
3913
                            ]
3957
                        ]
3914
                        ]
3958
                    ],
3915
                    ],
3959
                    'take-a-test' => [
3916
                    'take-a-test' => [
3960
                        'type' => Segment::class,
3917
                        'type' => Segment::class,
3961
                        'options' => [
3918
                        'options' => [
3962
                            'route' => '/take-a-test/:slide_id',
3919
                            'route' => '/take-a-test/:slide_id',
3963
                            'constraints' => [
3920
                            'constraints' => [
3964
                                'slide_id' => '[A-Za-z0-9\-]+\=*'
3921
                                'slide_id' => '[A-Za-z0-9\\-]+\\=*',
3965
                            ],
3922
                            ],
3966
                            'defaults' => [
3923
                            'defaults' => [
3967
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3924
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
3968
                                'action' => 'takeTest'
3925
                                'action' => 'takeTest',
3969
                            ]
3926
                            ],
3970
                        ],
3927
                        ],
3971
                        'may_terminate' => true
3928
                        'may_terminate' => true,
3972
                    ],
3929
                    ],
3973
                    'capsules' => [
3930
                    'capsules' => [
3974
                        'type' => Segment::class,
3931
                        'type' => Segment::class,
3975
                        'options' => [
3932
                        'options' => [
3976
                            'route' => '/capsules/:topic_id',
3933
                            'route' => '/capsules/:topic_id',
3977
                            'constraints' => [
3934
                            'constraints' => [
3978
                                'topic_id' => '[A-Za-z0-9\-]+\=*'
3935
                                'topic_id' => '[A-Za-z0-9\\-]+\\=*',
3979
                            ],
3936
                            ],
3980
                            'defaults' => [
3937
                            'defaults' => [
3981
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3938
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
3982
                                'action' => 'capsules'
3939
                                'action' => 'capsules',
3983
                            ]
3940
                            ],
3984
                        ],
3941
                        ],
3985
                        'may_terminate' => true
3942
                        'may_terminate' => true,
3986
                    ],
3943
                    ],
3987
                    'get-capsule' => [
3944
                    'get-capsule' => [
3988
                        'type' => Segment::class,
3945
                        'type' => Segment::class,
3989
                        'options' => [
3946
                        'options' => [
3990
                            'route' => '/get-capsule/:id',
3947
                            'route' => '/get-capsule/:id',
3991
                            'constraints' => [
3948
                            'constraints' => [
3992
                                'id' => '[A-Za-z0-9\-]+\=*'
3949
                                'id' => '[A-Za-z0-9\\-]+\\=*',
3993
                            ],
3950
                            ],
3994
                            'defaults' => [
3951
                            'defaults' => [
3995
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3952
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
3996
                                'action' => 'getCapsule'
3953
                                'action' => 'getCapsule',
3997
                            ],
3954
                            ],
3998
                            'may_terminate' => true
3955
                            'may_terminate' => true,
3999
                        ]
3956
                        ],
4000
                    ],
3957
                    ],
4001
                    'slides' => [
3958
                    'slides' => [
4002
                        'type' => Segment::class,
3959
                        'type' => Segment::class,
4003
                        'options' => [
3960
                        'options' => [
4004
                            'route' => '/slides/:topic_id/:capsule_id',
3961
                            'route' => '/slides/:topic_id/:capsule_id',
4005
                            'constraints' => [
3962
                            'constraints' => [
4006
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
3963
                                'topic_id' => '[A-Za-z0-9\\-]+\\=*',
4007
                                'capsule_id' => '[A-Za-z0-9\-]+\=*'
3964
                                'capsule_id' => '[A-Za-z0-9\\-]+\\=*',
4008
                            ],
3965
                            ],
4009
                            'defaults' => [
3966
                            'defaults' => [
4010
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3967
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4011
                                'action' => 'slides'
3968
                                'action' => 'slides',
4012
                            ]
3969
                            ],
4013
                        ],
3970
                        ],
4014
                        'may_terminate' => true
3971
                        'may_terminate' => true,
4015
                    ],
3972
                    ],
4016
                    'get-slide' => [
3973
                    'get-slide' => [
4017
                        'type' => Segment::class,
3974
                        'type' => Segment::class,
4018
                        'options' => [
3975
                        'options' => [
4019
                            'route' => '/get-slide/:id',
3976
                            'route' => '/get-slide/:id',
4020
                            'constraints' => [
3977
                            'constraints' => [
4021
                                'id' => '[A-Za-z0-9\-]+\=*'
3978
                                'id' => '[A-Za-z0-9\\-]+\\=*',
4022
                            ],
3979
                            ],
4023
                            'defaults' => [
3980
                            'defaults' => [
4024
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3981
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4025
                                'action' => 'getSlide'
3982
                                'action' => 'getSlide',
4026
                            ]
3983
                            ],
4027
                        ],
3984
                        ],
4028
                        'may_terminate' => true
3985
                        'may_terminate' => true,
4029
                    ],
3986
                    ],
4030
                    'sync' => [
3987
                    'sync' => [
4031
 
-
 
4032
                        'type' => Segment::class,
3988
                        'type' => Segment::class,
4033
                        'options' => [
3989
                        'options' => [
4034
                            'route' => '/sync/operation/:operation/topic/:topic_uuid[/capsule/:capsule_uuid][/slide/:slide_uuid][/]',
3990
                            'route' => '/sync/operation/:operation/topic/:topic_uuid[/capsule/:capsule_uuid][/slide/:slide_uuid][/]',
4035
                            'constraints' => [
3991
                            'constraints' => [
4036
                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
3992
                                'topic_uuid' => '[A-Za-z0-9\\-]+\\=*',
4037
                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
3993
                                'capsule_uuid' => '[A-Za-z0-9\\-]+\\=*',
4038
                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
3994
                                'slide_uuid' => '[A-Za-z0-9\\-]+\\=*',
4039
                                'operation' => 'slide-view|capsule-close|topic-close'
3995
                                'operation' => 'slide-view|capsule-close|topic-close',
4040
                            ],
3996
                            ],
4041
                            'defaults' => [
3997
                            'defaults' => [
4042
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
3998
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4043
                                'action' => 'sync'
3999
                                'action' => 'sync',
4044
                            ]
4000
                            ],
4045
                        ]
4001
                        ],
4046
                    ],
4002
                    ],
4047
                    'last-capsule-in-progress' => [
4003
                    'last-capsule-in-progress' => [
4048
                        'type' => Segment::class,
4004
                        'type' => Segment::class,
4049
                        'options' => [
4005
                        'options' => [
4050
                            'route' => '/last-capsule-in-progress',
4006
                            'route' => '/last-capsule-in-progress',
4051
                            'defaults' => [
4007
                            'defaults' => [
4052
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
4008
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4053
                                'action' => 'lastCapsuleInProgress'
4009
                                'action' => 'lastCapsuleInProgress',
4054
                            ]
4010
                            ],
4055
                        ]
4011
                        ],
4056
                    ],
4012
                    ],
4057
                    'capsules-pending' => [
4013
                    'capsules-pending' => [
4058
                        'type' => Segment::class,
4014
                        'type' => Segment::class,
4059
                        'options' => [
4015
                        'options' => [
4060
                            'route' => '/capsules-pending',
4016
                            'route' => '/capsules-pending',
4061
                            'defaults' => [
4017
                            'defaults' => [
4062
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
4018
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4063
                                'action' => 'capsulesPending'
4019
                                'action' => 'capsulesPending',
4064
                            ]
4020
                            ],
4065
                        ]
4021
                        ],
4066
                    ],
4022
                    ],
4067
                    'capsules-completed' => [
4023
                    'capsules-completed' => [
4068
                        'type' => Segment::class,
4024
                        'type' => Segment::class,
4069
                        'options' => [
4025
                        'options' => [
4070
                            'route' => '/capsules-completed',
4026
                            'route' => '/capsules-completed',
4071
                            'defaults' => [
4027
                            'defaults' => [
4072
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
4028
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4073
                                'action' => 'capsulesCompleted'
4029
                                'action' => 'capsulesCompleted',
4074
                            ]
4030
                            ],
4075
                        ]
4031
                        ],
4076
                    ],
4032
                    ],
4077
                    'capsules-in-progress' => [
4033
                    'capsules-in-progress' => [
4078
                        'type' => Segment::class,
4034
                        'type' => Segment::class,
4079
                        'options' => [
4035
                        'options' => [
4080
                            'route' => '/capsules-in-progress',
4036
                            'route' => '/capsules-in-progress',
4081
                            'defaults' => [
4037
                            'defaults' => [
4082
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
4038
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4083
                                'action' => 'capsulesInProgress'
4039
                                'action' => 'capsulesInProgress',
4084
                            ]
4040
                            ],
4085
                        ]
4041
                        ],
4086
                    ],
4042
                    ],
4087
                    'capsules-comments' => [
4043
                    'capsules-comments' => [
4088
                        'type' => Segment::class,
4044
                        'type' => Segment::class,
4089
                        'options' => [
4045
                        'options' => [
4090
                            'route' => '/capsules-comments/:capsule_id',
4046
                            'route' => '/capsules-comments/:capsule_id',
4091
                            'constraints' => [
4047
                            'constraints' => [
4092
                                'capsule_id' => '[A-Za-z0-9\-]+\=*'
4048
                                'capsule_id' => '[A-Za-z0-9\\-]+\\=*',
4093
                            ],
4049
                            ],
4094
                            'defaults' => [
4050
                            'defaults' => [
4095
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
4051
                                'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4096
                                'action' => 'capsuleComments'
4052
                                'action' => 'capsuleComments',
4097
                            ]
4053
                            ],
4098
                        ],
4054
                        ],
4099
                        'may_terminate' => true,
4055
                        'may_terminate' => true,
4100
                        'child_routes' => [
4056
                        'child_routes' => [
4101
                            'add' => [
4057
                            'add' => [
4102
                                'type' => Segment::class,
4058
                                'type' => Segment::class,
4103
                                'options' => [
4059
                                'options' => [
4104
                                    'route' => '/add',
4060
                                    'route' => '/add',
4105
                                    'defaults' => [
4061
                                    'defaults' => [
4106
                                        'controller' => '\LeadersLinked\Controller\MicrolearningController',
4062
                                        'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4107
                                        'action' => 'capsuleAddMyComment'
4063
                                        'action' => 'capsuleAddMyComment',
4108
                                    ]
4064
                                    ],
4109
                                ]
4065
                                ],
4110
                            ],
4066
                            ],
4111
                            'delete' => [
4067
                            'delete' => [
4112
                                'type' => Segment::class,
4068
                                'type' => Segment::class,
4113
                                'options' => [
4069
                                'options' => [
4114
                                    'route' => '/delete/:comment_id',
4070
                                    'route' => '/delete/:comment_id',
4115
                                    'constraints' => [
4071
                                    'constraints' => [
4116
                                        'comment_id' => '[A-Za-z0-9\-]+\=*'
4072
                                        'comment_id' => '[A-Za-z0-9\\-]+\\=*',
4117
                                    ],
4073
                                    ],
4118
                                    'defaults' => [
4074
                                    'defaults' => [
4119
                                        'controller' => '\LeadersLinked\Controller\MicrolearningController',
4075
                                        'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4120
                                        'action' => 'capsuleDeleteMyComment'
4076
                                        'action' => 'capsuleDeleteMyComment',
4121
                                    ]
4077
                                    ],
4122
                                ]
4078
                                ],
4123
                            ]
4079
                            ],
4124
                        ]
4080
                        ],
4125
                    ]
4081
                    ],
4126
 
-
 
4127
                    /*
4082
                    /*
4128
                 *
4083
                 *
4129
                 * 'capsule' => [
4084
                 * 'capsule' => [
4130
                 * 'type' => Segment::class,
4085
                 * 'type' => Segment::class,
4131
                 * 'options' => [
4086
                 * 'options' => [
4132
                 * 'route' => '/capsule',
4087
                 * 'route' => '/capsule',
4133
                 * 'defaults' => [
4088
                 * 'defaults' => [
4134
                 * 'controller' => '\LeadersLinked\Controller\MicrolearningController',
4089
                 * 'controller' => '\\LeadersLinked\\Controller\\MicrolearningController',
4135
                 * 'action' => 'lastCapsuleInProgress'
4090
                 * 'action' => 'lastCapsuleInProgress'
4136
                 * ]
4091
                 * ]
4137
                 * ]
4092
                 * ]
4138
                 * ],
4093
                 * ],
4139
                 *
4094
                 *
Línea 4141... Línea 4096...
4141
                 * capsuleCommentsAction
4096
                 * capsuleCommentsAction
4142
                 * capsuleDeleteMyCommentAction
4097
                 * capsuleDeleteMyCommentAction
4143
                 * capsuleAddMyCommentAction
4098
                 * capsuleAddMyCommentAction
4144
                 *
4099
                 *
4145
                 */
4100
                 */
4146
                ]
4101
                ],
4147
            ],
4102
            ],
4148
 
-
 
4149
            'services' => [
4103
            'services' => [
4150
                'type' => Literal::class,
4104
                'type' => Literal::class,
4151
                'options' => [
4105
                'options' => [
4152
                    'route' => '/services',
4106
                    'route' => '/services',
4153
                    'defaults' => [
4107
                    'defaults' => [
4154
                        'controller' => '\LeadersLinked\Controller\ServiceController',
4108
                        'controller' => '\\LeadersLinked\\Controller\\ServiceController',
4155
                        'action' => 'index'
4109
                        'action' => 'index',
4156
                    ]
4110
                    ],
4157
                ],
4111
                ],
4158
                'may_terminate' => true,
4112
                'may_terminate' => true,
4159
                'child_routes' => [
4113
                'child_routes' => [
4160
                    'device' => [
4114
                    'device' => [
4161
                        'type' => Literal::class,
4115
                        'type' => Literal::class,
4162
                        'options' => [
4116
                        'options' => [
4163
                            'route' => '/device',
4117
                            'route' => '/device',
4164
                            'defaults' => [
4118
                            'defaults' => [
4165
                                'controller' => '\LeadersLinked\Controller\ServiceController',
4119
                                'controller' => '\\LeadersLinked\\Controller\\ServiceController',
4166
                                'action' => 'device'
4120
                                'action' => 'device',
4167
                            ]
4121
                            ],
4168
                        ]
4122
                        ],
4169
                    ],
4123
                    ],
4170
                    'fcm' => [
4124
                    'fcm' => [
4171
                        'type' => Literal::class,
4125
                        'type' => Literal::class,
4172
                        'options' => [
4126
                        'options' => [
4173
                            'route' => '/fcm',
4127
                            'route' => '/fcm',
4174
                            'defaults' => [
4128
                            'defaults' => [
4175
                                'controller' => '\LeadersLinked\Controller\ServiceController',
4129
                                'controller' => '\\LeadersLinked\\Controller\\ServiceController',
4176
                                'action' => 'fcm'
4130
                                'action' => 'fcm',
4177
                            ]
4131
                            ],
4178
                        ]
4132
                        ],
4179
                    ],
4133
                    ],
4180
                    'signin' => [
4134
                    'signin' => [
4181
                        'type' => Literal::class,
4135
                        'type' => Literal::class,
4182
                        'options' => [
4136
                        'options' => [
4183
                            'route' => '/signin',
4137
                            'route' => '/signin',
4184
                            'defaults' => [
4138
                            'defaults' => [
4185
                                'controller' => '\LeadersLinked\Controller\ServiceController',
4139
                                'controller' => '\\LeadersLinked\\Controller\\ServiceController',
4186
                                'action' => 'signin'
4140
                                'action' => 'signin',
4187
                            ]
4141
                            ],
4188
                        ]
4142
                        ],
4189
                    ],
4143
                    ],
4190
                    'signout' => [
4144
                    'signout' => [
4191
                        'type' => Literal::class,
4145
                        'type' => Literal::class,
4192
                        'options' => [
4146
                        'options' => [
4193
                            'route' => '/signout',
4147
                            'route' => '/signout',
4194
                            'defaults' => [
4148
                            'defaults' => [
4195
                                'controller' => '\LeadersLinked\Controller\ServiceController',
4149
                                'controller' => '\\LeadersLinked\\Controller\\ServiceController',
4196
                                'action' => 'signout'
4150
                                'action' => 'signout',
4197
                            ]
4151
                            ],
4198
                        ]
4152
                        ],
4199
                    ]
4153
                    ],
4200
                ]
4154
                ],
4201
            ]
4155
            ],
4202
        ]
4156
        ],
4203
    ],
4157
    ],
4204
    'controllers' => [
4158
    'controllers' => [
4205
        'factories' => [
4159
        'factories' => [
4206
            \LeadersLinked\Controller\AbuseReportController::class => \LeadersLinked\Factory\Controller\AbuseReportControllerFactory::class,
4160
            \LeadersLinked\Controller\AbuseReportController::class => \LeadersLinked\Factory\Controller\AbuseReportControllerFactory::class,
4207
 
-
 
4208
            \LeadersLinked\Controller\AccountSettingController::class => \LeadersLinked\Factory\Controller\AccountSettingControllerFactory::class,
4161
            \LeadersLinked\Controller\AccountSettingController::class => \LeadersLinked\Factory\Controller\AccountSettingControllerFactory::class,
4209
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
4162
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
4210
            \LeadersLinked\Controller\BackendController::class => \LeadersLinked\Factory\Controller\BackendControllerFactory::class,
4163
            \LeadersLinked\Controller\BackendController::class => \LeadersLinked\Factory\Controller\BackendControllerFactory::class,
4211
            \LeadersLinked\Controller\CalendarController::class => \LeadersLinked\Factory\Controller\CalendarControllerFactory::class,
4164
            \LeadersLinked\Controller\CalendarController::class => \LeadersLinked\Factory\Controller\CalendarControllerFactory::class,
4212
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
4165
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
Línea 4233... Línea 4186...
4233
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
4186
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
4234
            \LeadersLinked\Controller\ProfileMicrolearningController::class => \LeadersLinked\Factory\Controller\ProfileMicrolearningControllerFactory::class,
4187
            \LeadersLinked\Controller\ProfileMicrolearningController::class => \LeadersLinked\Factory\Controller\ProfileMicrolearningControllerFactory::class,
4235
            // \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
4188
            // \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
4236
            // \LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
4189
            // \LeadersLinked\Controller\PerformanceEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationControllerFactory::class,
4237
            \LeadersLinked\Controller\MyCoachController::class => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
4190
            \LeadersLinked\Controller\MyCoachController::class => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
4238
 
-
 
4239
            \LeadersLinked\Controller\KnowledgeAreaController::class => \LeadersLinked\Factory\Controller\KnowledgeAreaControllerFactory::class,
4191
            \LeadersLinked\Controller\KnowledgeAreaController::class => \LeadersLinked\Factory\Controller\KnowledgeAreaControllerFactory::class,
4240
            \LeadersLinked\Controller\MyProfilesController::class => \LeadersLinked\Factory\Controller\MyProfilesControllerFactory::class,
4192
            \LeadersLinked\Controller\MyProfilesController::class => \LeadersLinked\Factory\Controller\MyProfilesControllerFactory::class,
4241
            \LeadersLinked\Controller\SearchController::class => \LeadersLinked\Factory\Controller\SearchControllerFactory::class,
4193
            \LeadersLinked\Controller\SearchController::class => \LeadersLinked\Factory\Controller\SearchControllerFactory::class,
4242
            \LeadersLinked\Controller\ShorterController::class => \LeadersLinked\Factory\Controller\ShorterControllerFactory::class,
4194
            \LeadersLinked\Controller\ShorterController::class => \LeadersLinked\Factory\Controller\ShorterControllerFactory::class,
4243
 
-
 
4244
            \LeadersLinked\Controller\ServiceController::class => \LeadersLinked\Factory\Controller\ServiceControllerFactory::class,
4195
            \LeadersLinked\Controller\ServiceController::class => \LeadersLinked\Factory\Controller\ServiceControllerFactory::class,
4245
 
-
 
4246
            \LeadersLinked\Controller\HabitController::class => \LeadersLinked\Factory\Controller\HabitControllerFactory::class,
4196
            \LeadersLinked\Controller\HabitController::class => \LeadersLinked\Factory\Controller\HabitControllerFactory::class,
4247
            \LeadersLinked\Controller\HabitValueController::class => \LeadersLinked\Factory\Controller\HabitValueControllerFactory::class,
4197
            \LeadersLinked\Controller\HabitValueController::class => \LeadersLinked\Factory\Controller\HabitValueControllerFactory::class,
4248
            \LeadersLinked\Controller\HabitParadigmController::class => \LeadersLinked\Factory\Controller\HabitParadigmControllerFactory::class,
4198
            \LeadersLinked\Controller\HabitParadigmController::class => \LeadersLinked\Factory\Controller\HabitParadigmControllerFactory::class,
4249
            \LeadersLinked\Controller\HabitPurposeController::class => \LeadersLinked\Factory\Controller\HabitPurposeControllerFactory::class,
4199
            \LeadersLinked\Controller\HabitPurposeController::class => \LeadersLinked\Factory\Controller\HabitPurposeControllerFactory::class,
4250
            \LeadersLinked\Controller\HabitSkillController::class => \LeadersLinked\Factory\Controller\HabitSkillControllerFactory::class,
4200
            \LeadersLinked\Controller\HabitSkillController::class => \LeadersLinked\Factory\Controller\HabitSkillControllerFactory::class,
4251
            \LeadersLinked\Controller\HabitSkillRegisterController::class => \LeadersLinked\Factory\Controller\HabitSkillRegisterControllerFactory::class,
4201
            \LeadersLinked\Controller\HabitSkillRegisterController::class => \LeadersLinked\Factory\Controller\HabitSkillRegisterControllerFactory::class,
4252
            \LeadersLinked\Controller\HabitGoalController::class => \LeadersLinked\Factory\Controller\HabitGoalControllerFactory::class,
4202
            \LeadersLinked\Controller\HabitGoalController::class => \LeadersLinked\Factory\Controller\HabitGoalControllerFactory::class,
4253
            \LeadersLinked\Controller\HabitReportController::class => \LeadersLinked\Factory\Controller\HabitReportControllerFactory::class,
4203
            \LeadersLinked\Controller\HabitReportController::class => \LeadersLinked\Factory\Controller\HabitReportControllerFactory::class,
4254
            \LeadersLinked\Controller\RecruitmentPreAplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentPreAplicationControllerFactory::class,
4204
            \LeadersLinked\Controller\RecruitmentPreAplicationController::class => \LeadersLinked\Factory\Controller\RecruitmentPreAplicationControllerFactory::class,
4255
            \LeadersLinked\Controller\RecruitmentCreateJobDescriptionController::class => \LeadersLinked\Factory\Controller\RecruitmentCreateJobDescriptionControllerFactory::class,
4205
            \LeadersLinked\Controller\RecruitmentCreateJobDescriptionController::class => \LeadersLinked\Factory\Controller\RecruitmentCreateJobDescriptionControllerFactory::class,
4256
 
-
 
4257
        ],
4206
        ],
4258
        'aliases' => [
4207
        'aliases' => [
4259
            '\LeadersLinked\Controller\AbuseReportController' => \LeadersLinked\Controller\AbuseReportController::class,
4208
            '\\LeadersLinked\\Controller\\AbuseReportController' => \LeadersLinked\Controller\AbuseReportController::class,
4260
 
-
 
4261
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
4209
            '\\LeadersLinked\\Controller\\AuthController' => \LeadersLinked\Controller\AuthController::class,
4262
            '\LeadersLinked\Controller\BackendController' => \LeadersLinked\Controller\BackendController::class,
4210
            '\\LeadersLinked\\Controller\\BackendController' => \LeadersLinked\Controller\BackendController::class,
4263
            '\LeadersLinked\Controller\AccountSettingController' => \LeadersLinked\Controller\AccountSettingController::class,
4211
            '\\LeadersLinked\\Controller\\AccountSettingController' => \LeadersLinked\Controller\AccountSettingController::class,
4264
            '\LeadersLinked\Controller\CalendarController' => \LeadersLinked\Controller\CalendarController::class,
4212
            '\\LeadersLinked\\Controller\\CalendarController' => \LeadersLinked\Controller\CalendarController::class,
4265
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
4213
            '\\LeadersLinked\\Controller\\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
4266
            '\LeadersLinked\Controller\ConnectionController' => \LeadersLinked\Controller\ConnectionController::class,
4214
            '\\LeadersLinked\\Controller\\ConnectionController' => \LeadersLinked\Controller\ConnectionController::class,
4267
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
4215
            '\\LeadersLinked\\Controller\\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
4268
            '\LeadersLinked\Controller\HomeController' => \LeadersLinked\Controller\HomeController::class,
4216
            '\\LeadersLinked\\Controller\\HomeController' => \LeadersLinked\Controller\HomeController::class,
4269
            '\LeadersLinked\Controller\HelpController' => \LeadersLinked\Controller\HelpController::class,
4217
            '\\LeadersLinked\\Controller\\HelpController' => \LeadersLinked\Controller\HelpController::class,
4270
            '\LeadersLinked\Controller\HelperController' => \LeadersLinked\Controller\HelperController::class,
4218
            '\\LeadersLinked\\Controller\\HelperController' => \LeadersLinked\Controller\HelperController::class,
4271
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
4219
            '\\LeadersLinked\\Controller\\FeedController' => \LeadersLinked\Controller\FeedController::class,
4272
            '\LeadersLinked\Controller\ImpersonateController' => \LeadersLinked\Controller\ImpersonateController::class,
4220
            '\\LeadersLinked\\Controller\\ImpersonateController' => \LeadersLinked\Controller\ImpersonateController::class,
4273
            '\LeadersLinked\Controller\InMailController' => \LeadersLinked\Controller\InMailController::class,
4221
            '\\LeadersLinked\\Controller\\InMailController' => \LeadersLinked\Controller\InMailController::class,
4274
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
4222
            '\\LeadersLinked\\Controller\\JobController' => \LeadersLinked\Controller\JobController::class,
4275
            '\LeadersLinked\Controller\GroupController' => \LeadersLinked\Controller\GroupController::class,
4223
            '\\LeadersLinked\\Controller\\GroupController' => \LeadersLinked\Controller\GroupController::class,
4276
            '\LeadersLinked\Controller\MyGroupsController' => \LeadersLinked\Controller\MyGroupsController::class,
4224
            '\\LeadersLinked\\Controller\\MyGroupsController' => \LeadersLinked\Controller\MyGroupsController::class,
4277
            '\LeadersLinked\Controller\MyCompaniesController' => \LeadersLinked\Controller\MyCompaniesController::class,
4225
            '\\LeadersLinked\\Controller\\MyCompaniesController' => \LeadersLinked\Controller\MyCompaniesController::class,
4278
            '\LeadersLinked\Controller\PaypalController' => \LeadersLinked\Controller\PaypalController::class,
4226
            '\\LeadersLinked\\Controller\\PaypalController' => \LeadersLinked\Controller\PaypalController::class,
4279
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
4227
            '\\LeadersLinked\\Controller\\PostController' => \LeadersLinked\Controller\PostController::class,
4280
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
4228
            '\\LeadersLinked\\Controller\\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
4281
 
-
 
4282
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
4229
            '\\LeadersLinked\\Controller\\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
4283
            '\LeadersLinked\Controller\MyProfilesController' => \LeadersLinked\Controller\MyProfilesController::class,
4230
            '\\LeadersLinked\\Controller\\MyProfilesController' => \LeadersLinked\Controller\MyProfilesController::class,
4284
            '\LeadersLinked\Controller\MarketPlaceController' => \LeadersLinked\Controller\MarketPlaceController::class,
4231
            '\\LeadersLinked\\Controller\\MarketPlaceController' => \LeadersLinked\Controller\MarketPlaceController::class,
4285
            '\LeadersLinked\Controller\MoodleController' => \LeadersLinked\Controller\MoodleController::class,
4232
            '\\LeadersLinked\\Controller\\MoodleController' => \LeadersLinked\Controller\MoodleController::class,
4286
            '\LeadersLinked\Controller\NotificationController' => \LeadersLinked\Controller\NotificationController::class,
4233
            '\\LeadersLinked\\Controller\\NotificationController' => \LeadersLinked\Controller\NotificationController::class,
4287
            '\LeadersLinked\Controller\SearchController' => \LeadersLinked\Controller\SearchController::class,
4234
            '\\LeadersLinked\\Controller\\SearchController' => \LeadersLinked\Controller\SearchController::class,
4288
            '\LeadersLinked\Controller\OauthController' => \LeadersLinked\Controller\OauthController::class,
4235
            '\\LeadersLinked\\Controller\\OauthController' => \LeadersLinked\Controller\OauthController::class,
4289
            '\LeadersLinked\Controller\ShorterController' => \LeadersLinked\Controller\ShorterController::class,
4236
            '\\LeadersLinked\\Controller\\ShorterController' => \LeadersLinked\Controller\ShorterController::class,
4290
 
-
 
4291
            '\LeadersLinked\Controller\KnowledgeAreaController' => \LeadersLinked\Controller\KnowledgeAreaController::class,
4237
            '\\LeadersLinked\\Controller\\KnowledgeAreaController' => \LeadersLinked\Controller\KnowledgeAreaController::class,
4292
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
4238
            '\\LeadersLinked\\Controller\\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
4293
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
4239
            '\\LeadersLinked\\Controller\\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
4294
 
-
 
4295
            '\LeadersLinked\Controller\ServiceController' => \LeadersLinked\Controller\ServiceController::class,
4240
            '\\LeadersLinked\\Controller\\ServiceController' => \LeadersLinked\Controller\ServiceController::class,
4296
 
-
 
4297
            '\LeadersLinked\Controller\HabitController' => \LeadersLinked\Controller\HabitController::class,
4241
            '\\LeadersLinked\\Controller\\HabitController' => \LeadersLinked\Controller\HabitController::class,
4298
            '\LeadersLinked\Controller\HabitValueController' => \LeadersLinked\Controller\HabitValueController::class,
4242
            '\\LeadersLinked\\Controller\\HabitValueController' => \LeadersLinked\Controller\HabitValueController::class,
4299
            '\LeadersLinked\Controller\HabitParadigmController' => \LeadersLinked\Controller\HabitParadigmController::class,
4243
            '\\LeadersLinked\\Controller\\HabitParadigmController' => \LeadersLinked\Controller\HabitParadigmController::class,
4300
            '\LeadersLinked\Controller\HabitPurposeController' => \LeadersLinked\Controller\HabitPurposeController::class,
4244
            '\\LeadersLinked\\Controller\\HabitPurposeController' => \LeadersLinked\Controller\HabitPurposeController::class,
4301
            '\LeadersLinked\Controller\HabitSkillController' => \LeadersLinked\Controller\HabitSkillController::class,
4245
            '\\LeadersLinked\\Controller\\HabitSkillController' => \LeadersLinked\Controller\HabitSkillController::class,
4302
            '\LeadersLinked\Controller\HabitSkillRegisterController' => \LeadersLinked\Controller\HabitSkillRegisterController::class,
4246
            '\\LeadersLinked\\Controller\\HabitSkillRegisterController' => \LeadersLinked\Controller\HabitSkillRegisterController::class,
4303
            '\LeadersLinked\Controller\HabitGoalController' => \LeadersLinked\Controller\HabitGoalController::class,
4247
            '\\LeadersLinked\\Controller\\HabitGoalController' => \LeadersLinked\Controller\HabitGoalController::class,
4304
            '\LeadersLinked\Controller\HabitReportController' => \LeadersLinked\Controller\HabitReportController::class,
4248
            '\\LeadersLinked\\Controller\\HabitReportController' => \LeadersLinked\Controller\HabitReportController::class,
4305
            '\LeadersLinked\Controller\RecruitmentPreAplicationController' => \LeadersLinked\Controller\RecruitmentPreAplicationController::class,
4249
            '\\LeadersLinked\\Controller\\RecruitmentPreAplicationController' => \LeadersLinked\Controller\RecruitmentPreAplicationController::class,
4306
            '\LeadersLinked\Controller\RecruitmentCreateJobDescriptionController' => \LeadersLinked\Controller\RecruitmentCreateJobDescriptionController::class,
4250
            '\\LeadersLinked\\Controller\\RecruitmentCreateJobDescriptionController' => \LeadersLinked\Controller\RecruitmentCreateJobDescriptionController::class,
4307
            // '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
4251
            // '\\LeadersLinked\\Controller\\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
4308
            // '\LeadersLinked\Controller\ZoomController' => \LeadersLinked\Controller\ZoomController::class,
4252
            // '\\LeadersLinked\\Controller\\ZoomController' => \LeadersLinked\Controller\ZoomController::class,
4309
        ]
4253
        ],
4310
    ],
4254
    ],
4311
    'laminas-cli' => [
4255
    'laminas-cli' => [
4312
        'commands' => [
4256
        'commands' => [
4313
            'process-scheduled-content' => \LeadersLinked\Command\ProcessScheduledContentCommand::class,
4257
            'process-scheduled-content' => \LeadersLinked\Command\ProcessScheduledContentCommand::class,
4314
            'process-queue-email' => \LeadersLinked\Command\ProcessQueueEmailCommand::class,
4258
            'process-queue-email' => \LeadersLinked\Command\ProcessQueueEmailCommand::class,
Línea 4320... Línea 4264...
4320
            'check-preview-poster-for-feed' => \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class,
4264
            'check-preview-poster-for-feed' => \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class,
4321
            'daily-pulse-simulate' => \LeadersLinked\Command\DailyPulseSimulateCommand::class,
4265
            'daily-pulse-simulate' => \LeadersLinked\Command\DailyPulseSimulateCommand::class,
4322
            'check-external-credenditals' => \LeadersLinked\Command\CheckExternalCredentialsCommand::class,
4266
            'check-external-credenditals' => \LeadersLinked\Command\CheckExternalCredentialsCommand::class,
4323
            'send-data-to-s3-command' => \LeadersLinked\Command\SendDataToS3Command::class,
4267
            'send-data-to-s3-command' => \LeadersLinked\Command\SendDataToS3Command::class,
4324
            'test-command' => \LeadersLinked\Command\TestCommand::class,
4268
            'test-command' => \LeadersLinked\Command\TestCommand::class,
4325
            'test-send-push' => \LeadersLinked\Command\TestSendPushCommand::class
4269
            'test-send-push' => \LeadersLinked\Command\TestSendPushCommand::class,
4326
        ]
4270
        ],
4327
    ],
4271
    ],
4328
    'listeners' => [ // \LeadersLinked\Listener\CorsRequestListener::class,
4272
    'listeners' => [ // \LeadersLinked\Listener\CorsRequestListener::class,
4329
    ],
4273
    ],
4330
    'service_manager' => [
4274
    'service_manager' => [
4331
        'abstract_factories' => [
4275
        'abstract_factories' => [
4332
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
4276
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class,
4333
        ],
4277
        ],
4334
        'factories' => [
4278
        'factories' => [
4335
            'RenderingStrategy' => function ($container) {
4279
            'RenderingStrategy' => function ($container) {
4336
                $translator = $container->get('MvcTranslator');
4280
                $translator = $container->get('MvcTranslator');
4337
                return new \LeadersLinked\View\RenderingStrategy($translator);
4281
                return new \LeadersLinked\View\RenderingStrategy($translator);
Línea 4340... Línea 4284...
4340
            //
4284
            //
4341
            // return new \LeadersLinked\Listener\CorsRequestListener();
4285
            // return new \LeadersLinked\Listener\CorsRequestListener();
4342
            // },
4286
            // },
4343
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
4287
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
4344
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
4288
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
4345
 
-
 
4346
            \LeadersLinked\Command\ProcessQueueEmailCommand::class => \LeadersLinked\Factory\Command\ProcessQueueEmailCommandFactory::class,
4289
            \LeadersLinked\Command\ProcessQueueEmailCommand::class => \LeadersLinked\Factory\Command\ProcessQueueEmailCommandFactory::class,
4347
            \LeadersLinked\Command\ProcessQueuePushCommand::class => \LeadersLinked\Factory\Command\ProcessQueuePushCommandFactory::class,
4290
            \LeadersLinked\Command\ProcessQueuePushCommand::class => \LeadersLinked\Factory\Command\ProcessQueuePushCommandFactory::class,
4348
            \LeadersLinked\Command\ProcessQueueUserDeletedCommand::class => \LeadersLinked\Factory\Command\ProcessQueueUserDeletedCommandFactory::class,
4291
            \LeadersLinked\Command\ProcessQueueUserDeletedCommand::class => \LeadersLinked\Factory\Command\ProcessQueueUserDeletedCommandFactory::class,
4349
 
-
 
4350
            \LeadersLinked\Command\ProcessQueueVideoConvertCommand::class => \LeadersLinked\Factory\Command\ProcessQueueVideoConvertCommandFactory::class,
4292
            \LeadersLinked\Command\ProcessQueueVideoConvertCommand::class => \LeadersLinked\Factory\Command\ProcessQueueVideoConvertCommandFactory::class,
4351
            \LeadersLinked\Command\RecalculateMicrolearningProgressCommand::class => \LeadersLinked\Factory\Command\RecalculateMicrolearningProgressCommandFactory::class,
4293
            \LeadersLinked\Command\RecalculateMicrolearningProgressCommand::class => \LeadersLinked\Factory\Command\RecalculateMicrolearningProgressCommandFactory::class,
4352
            \LeadersLinked\Command\CheckOwnerUserForCompanyCommand::class => \LeadersLinked\Factory\Command\CheckOwnerUserForCompanyCommandFactory::class,
4294
            \LeadersLinked\Command\CheckOwnerUserForCompanyCommand::class => \LeadersLinked\Factory\Command\CheckOwnerUserForCompanyCommandFactory::class,
4353
 
-
 
4354
            \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class => \LeadersLinked\Factory\Command\CheckPreviewPosterForFeedCommandFactory::class,
4295
            \LeadersLinked\Command\CheckPreviewPosterForFeedCommand::class => \LeadersLinked\Factory\Command\CheckPreviewPosterForFeedCommandFactory::class,
4355
 
-
 
4356
            \LeadersLinked\Command\DailyPulseSimulateCommand::class => \LeadersLinked\Factory\Command\DailyPulseSimulateCommandFactory::class,
4296
            \LeadersLinked\Command\DailyPulseSimulateCommand::class => \LeadersLinked\Factory\Command\DailyPulseSimulateCommandFactory::class,
4357
            \LeadersLinked\Command\CheckExternalCredentialsCommand::class => \LeadersLinked\Factory\Command\CheckExternalCredentialsCommandFactory::class,
4297
            \LeadersLinked\Command\CheckExternalCredentialsCommand::class => \LeadersLinked\Factory\Command\CheckExternalCredentialsCommandFactory::class,
4358
            \LeadersLinked\Command\SendDataToS3Command::class => \LeadersLinked\Factory\Command\SendDataToS3CommandFactory::class,
4298
            \LeadersLinked\Command\SendDataToS3Command::class => \LeadersLinked\Factory\Command\SendDataToS3CommandFactory::class,
4359
 
-
 
4360
            \LeadersLinked\Command\ProcessScheduledContentCommand::class => \LeadersLinked\Factory\Command\ProcessScheduledContentCommandFactory::class,
4299
            \LeadersLinked\Command\ProcessScheduledContentCommand::class => \LeadersLinked\Factory\Command\ProcessScheduledContentCommandFactory::class,
4361
 
-
 
4362
            \LeadersLinked\Command\TestCommand::class => \LeadersLinked\Factory\Command\TestCommandFactory::class,
4300
            \LeadersLinked\Command\TestCommand::class => \LeadersLinked\Factory\Command\TestCommandFactory::class,
4363
            \LeadersLinked\Command\TestSendPushCommand::class => \LeadersLinked\Factory\Command\TestSendPushCommandFactory::class
4301
            \LeadersLinked\Command\TestSendPushCommand::class => \LeadersLinked\Factory\Command\TestSendPushCommandFactory::class,
4364
        ],
4302
        ],
4365
        'aliases' => [ // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
4303
        'aliases' => [ // 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
4366
        ]
4304
        ],
4367
    ],
4305
    ],
4368
    'controller_plugins' => [
4306
    'controller_plugins' => [
4369
        'invokables' => [],
4307
        'invokables' => [],
4370
        'factories' => [
4308
        'factories' => [
4371
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
4309
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class,
4372
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class
4310
            \LeadersLinked\Plugin\CurrentNetworkPlugin::class => \LeadersLinked\Factory\Plugin\CurrentNetworkPluginFactory::class,
4373
        ],
4311
        ],
4374
        'aliases' => [
4312
        'aliases' => [
4375
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
4313
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class,
4376
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class
4314
            'currentNetworkPlugin' => \LeadersLinked\Plugin\CurrentNetworkPlugin::class,
4377
        ]
4315
        ],
4378
    ],
4316
    ],
4379
    'view_manager' => [
4317
    'view_manager' => [
4380
        'display_not_found_reason' => true,
4318
        'display_not_found_reason' => true,
4381
        'display_exceptions' => true,
4319
        'display_exceptions' => true,
4382
        'doctype' => 'HTML5',
4320
        'doctype' => 'HTML5',
4383
        'not_found_template' => 'error/404',
4321
        'not_found_template' => 'error/404',
4384
        'exception_template' => 'error/index',
4322
        'exception_template' => 'error/index',
4385
        'template_map' => [
4323
        'template_map' => [
4386
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
4324
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
4387
            'error/404' => __DIR__ . '/../view/error/404.phtml',
4325
            'error/404' => __DIR__ . '/../view/error/404.phtml',
4388
            'error/index' => __DIR__ . '/../view/error/index.phtml'
4326
            'error/index' => __DIR__ . '/../view/error/index.phtml',
4389
        ],
4327
        ],
4390
        'template_path_stack' => [
4328
        'template_path_stack' => [
4391
            __DIR__ . '/../view'
4329
            __DIR__ . '/../view',
4392
        ],
4330
        ],
4393
        'strategies' => [
4331
        'strategies' => [
4394
            'ViewJsonStrategy',
4332
            'ViewJsonStrategy',
4395
            'RenderingStrategy'
4333
            'RenderingStrategy',
4396
        ]
4334
        ],
4397
    ],
4335
    ],
4398
];
4336
];