Proyectos de Subversion LeadersLinked - Services

Rev

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

Rev 301 Rev 302
Línea 269... Línea 269...
269
                        'action' => 'language'
269
                        'action' => 'language'
270
                    ]
270
                    ]
271
                ]
271
                ]
272
            ],
272
            ],
Línea -... Línea 273...
-
 
273
            
-
 
274
            'habits' => [
-
 
275
                'type' => Literal::class,
-
 
276
                'options' => [
-
 
277
                    'route' => '/habits',
-
 
278
                    'defaults' => [
-
 
279
                        'controller' => '\LeadersLinked\Controller\HabitController',
-
 
280
                        'action' => 'index'
-
 
281
                    ]
-
 
282
                ],
-
 
283
                'may_terminate' => true,
-
 
284
                'child_routes' => [
-
 
285
                    'values' => [
-
 
286
                        'type' => Literal::class,
-
 
287
                        'options' => [
-
 
288
                            'route' => '/values',
-
 
289
                            'defaults' => [
-
 
290
                                'controller' => '\LeadersLinked\Controller\HabitValueController',
-
 
291
                                'action' => 'index'
-
 
292
                            ]
-
 
293
                        ],
-
 
294
                        'may_terminate' => true,
-
 
295
                        'child_routes' => [
-
 
296
                            'add' => [
-
 
297
                                'type' => Literal::class,
-
 
298
                                'options' => [
-
 
299
                                    'route' => '/add',
-
 
300
                                    'defaults' => [
-
 
301
                                        'controller' => '\LeadersLinked\Controller\HabitValueController',
-
 
302
                                        'action' => 'add'
-
 
303
                                    ],
-
 
304
                                ],
-
 
305
                            ],
-
 
306
                            'edit' => [
-
 
307
                                'type' => Segment::class,
-
 
308
                                'options' => [
-
 
309
                                    'route' => '/edit/:id',
-
 
310
                                    'constraints' => [
-
 
311
                                        'id' => '[A-Za-z0-9\-]+\=*',
-
 
312
                                    ],
-
 
313
                                    'defaults' => [
-
 
314
                                        'controller' => '\LeadersLinked\Controller\HabitValueController',
-
 
315
                                        'action' => 'edit'
-
 
316
                                    ]
-
 
317
                                ]
-
 
318
                            ],
-
 
319
                            'delete' => [
-
 
320
                                'type' => Segment::class,
-
 
321
                                'options' => [
-
 
322
                                    'route' => '/delete/:id',
-
 
323
                                    'constraints' => [
-
 
324
                                        'id' => '[A-Za-z0-9\-]+\=*',
-
 
325
                                    ],
-
 
326
                                    'defaults' => [
-
 
327
                                        'controller' => '\LeadersLinked\Controller\HabitValueController',
-
 
328
                                        'action' => 'delete'
-
 
329
                                    ]
-
 
330
                                ]
-
 
331
                            ],
-
 
332
                        ],        
-
 
333
                    ] ,   
-
 
334
                    
-
 
335
                    'paradigms' => [
-
 
336
                        'type' => Literal::class,
-
 
337
                        'options' => [
-
 
338
                            'route' => '/paradigms',
-
 
339
                            'defaults' => [
-
 
340
                                'controller' => '\LeadersLinked\Controller\HabitParadigmController',
-
 
341
                                'action' => 'index'
-
 
342
                            ]
-
 
343
                        ],
-
 
344
                        'may_terminate' => true,
-
 
345
                        'child_routes' => [
-
 
346
                            'add' => [
-
 
347
                                'type' => Literal::class,
-
 
348
                                'options' => [
-
 
349
                                    'route' => '/add',
-
 
350
                                    'defaults' => [
-
 
351
                                        'controller' => '\LeadersLinked\Controller\HabitParadigmController',
-
 
352
                                        'action' => 'add'
-
 
353
                                    ],
-
 
354
                                ],
-
 
355
                            ],
-
 
356
                            'edit' => [
-
 
357
                                'type' => Segment::class,
-
 
358
                                'options' => [
-
 
359
                                    'route' => '/edit/:id',
-
 
360
                                    'constraints' => [
-
 
361
                                        'id' => '[A-Za-z0-9\-]+\=*',
-
 
362
                                    ],
-
 
363
                                    'defaults' => [
-
 
364
                                        'controller' => '\LeadersLinked\Controller\HabitParadigmController',
-
 
365
                                        'action' => 'edit'
-
 
366
                                    ]
-
 
367
                                ]
-
 
368
                            ],
-
 
369
                            'delete' => [
-
 
370
                                'type' => Segment::class,
-
 
371
                                'options' => [
-
 
372
                                    'route' => '/delete/:id',
-
 
373
                                    'constraints' => [
-
 
374
                                        'id' => '[A-Za-z0-9\-]+\=*',
-
 
375
                                    ],
-
 
376
                                    'defaults' => [
-
 
377
                                        'controller' => '\LeadersLinked\Controller\HabitParadigmController',
-
 
378
                                        'action' => 'delete'
-
 
379
                                    ]
-
 
380
                                ]
-
 
381
                            ],
-
 
382
                        ],
-
 
383
                    ] ,   
-
 
384
                    
-
 
385
                    
-
 
386
                    'purposes' => [
-
 
387
                        'type' => Literal::class,
-
 
388
                        'options' => [
-
 
389
                            'route' => '/purposes',
-
 
390
                            'defaults' => [
-
 
391
                                'controller' => '\LeadersLinked\Controller\HabitPurposeController',
-
 
392
                                'action' => 'index'
-
 
393
                            ]
-
 
394
                        ],
-
 
395
                        'may_terminate' => true,
-
 
396
                        'child_routes' => [
-
 
397
                            'add' => [
-
 
398
                                'type' => Literal::class,
-
 
399
                                'options' => [
-
 
400
                                    'route' => '/add',
-
 
401
                                    'defaults' => [
-
 
402
                                        'controller' => '\LeadersLinked\Controller\HabitPurposeController',
-
 
403
                                        'action' => 'add'
-
 
404
                                    ],
-
 
405
                                ],
-
 
406
                            ],
-
 
407
                            'edit' => [
-
 
408
                                'type' => Segment::class,
-
 
409
                                'options' => [
-
 
410
                                    'route' => '/edit/:id',
-
 
411
                                    'constraints' => [
-
 
412
                                        'id' => '[A-Za-z0-9\-]+\=*',
-
 
413
                                    ],
-
 
414
                                    'defaults' => [
-
 
415
                                        'controller' => '\LeadersLinked\Controller\HabitPurposeController',
-
 
416
                                        'action' => 'edit'
-
 
417
                                    ]
-
 
418
                                ]
-
 
419
                            ],
-
 
420
                            'delete' => [
-
 
421
                                'type' => Segment::class,
-
 
422
                                'options' => [
-
 
423
                                    'route' => '/delete/:id',
-
 
424
                                    'constraints' => [
-
 
425
                                        'id' => '[A-Za-z0-9\-]+\=*',
-
 
426
                                    ],
-
 
427
                                    'defaults' => [
-
 
428
                                        'controller' => '\LeadersLinked\Controller\HabitPurposeController',
-
 
429
                                        'action' => 'delete'
-
 
430
                                    ]
-
 
431
                                ]
-
 
432
                            ],
-
 
433
                        ],
-
 
434
                    ] ,   
-
 
435
                            
-
 
436
                            
-
 
437
                ],
-
 
438
            ],   
Línea 273... Línea 439...
273
            
439
            
274
 
440
 
275
            'post' => [
441
            'post' => [
276
                'type' => Segment::class,
442
                'type' => Segment::class,
Línea 3765... Línea 3931...
3765
            
3931
            
3766
            \LeadersLinked\Controller\KnowledgeAreaController::class => \LeadersLinked\Factory\Controller\KnowledgeAreaControllerFactory::class,
3932
            \LeadersLinked\Controller\KnowledgeAreaController::class => \LeadersLinked\Factory\Controller\KnowledgeAreaControllerFactory::class,
3767
            \LeadersLinked\Controller\MyProfilesController::class => \LeadersLinked\Factory\Controller\MyProfilesControllerFactory::class,
3933
            \LeadersLinked\Controller\MyProfilesController::class => \LeadersLinked\Factory\Controller\MyProfilesControllerFactory::class,
3768
            \LeadersLinked\Controller\SearchController::class => \LeadersLinked\Factory\Controller\SearchControllerFactory::class,
3934
            \LeadersLinked\Controller\SearchController::class => \LeadersLinked\Factory\Controller\SearchControllerFactory::class,
-
 
3935
            \LeadersLinked\Controller\ShorterController::class => \LeadersLinked\Factory\Controller\ShorterControllerFactory::class,
-
 
3936
            
-
 
3937
            \LeadersLinked\Controller\HabitController::class => \LeadersLinked\Factory\Controller\HabitControllerFactory::class,
-
 
3938
            \LeadersLinked\Controller\HabitValueController::class => \LeadersLinked\Factory\Controller\HabitValueControllerFactory::class,
-
 
3939
            \LeadersLinked\Controller\HabitParadigmController::class => \LeadersLinked\Factory\Controller\HabitParadigmControllerFactory::class,
Línea 3769... Línea 3940...
3769
            \LeadersLinked\Controller\ShorterController::class => \LeadersLinked\Factory\Controller\ShorterControllerFactory::class,
3940
            \LeadersLinked\Controller\HabitPurposeController::class => \LeadersLinked\Factory\Controller\HabitPurposeControllerFactory::class,
3770
       
3941
       
3771
        ],
3942
        ],
Línea 3806... Línea 3977...
3806
           
3977
           
3807
            '\LeadersLinked\Controller\KnowledgeAreaController' => \LeadersLinked\Controller\KnowledgeAreaController::class,
3978
            '\LeadersLinked\Controller\KnowledgeAreaController' => \LeadersLinked\Controller\KnowledgeAreaController::class,
3808
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
3979
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
Línea 3809... Línea 3980...
3809
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
3980
            '\LeadersLinked\Controller\DailyPulseController' => \LeadersLinked\Controller\DailyPulseController::class,
-
 
3981
 
-
 
3982
            
-
 
3983
            '\LeadersLinked\Controller\HabitController' => \LeadersLinked\Controller\HabitController::class,
-
 
3984
            '\LeadersLinked\Controller\HabitValueController' => \LeadersLinked\Controller\HabitValueController::class,
3810
 
3985
            '\LeadersLinked\Controller\HabitParadigmController' => \LeadersLinked\Controller\HabitParadigmController::class,
3811
 
3986
            '\LeadersLinked\Controller\HabitPurposeController' => \LeadersLinked\Controller\HabitPurposeController::class,
3812
            //'\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
3987
            //'\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
3813
            //'\LeadersLinked\Controller\ZoomController' => \LeadersLinked\Controller\ZoomController::class,
3988
            //'\LeadersLinked\Controller\ZoomController' => \LeadersLinked\Controller\ZoomController::class,
3814
        ]
3989
        ]