Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 12286 Rev 12408
Línea 4289... Línea 4289...
4289
                                        'action' => 'index'
4289
                                        'action' => 'index'
4290
                                    ]
4290
                                    ]
4291
                                ],
4291
                                ],
4292
                                    'may_terminate' => true,
4292
                                    'may_terminate' => true,
4293
                                    'child_routes' => [
4293
                                    'child_routes' => [
-
 
4294
                                        'objectives' => [
-
 
4295
                                            'type' => Literal::class,
-
 
4296
                                            'options' => [
-
 
4297
                                                'route' => '/objectives',
-
 
4298
                                                'defaults' => [
-
 
4299
                                                    'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
-
 
4300
                                                    'action' => 'index'
-
 
4301
                                                ]
-
 
4302
                                            ],
-
 
4303
                                            
-
 
4304
                                            'may_terminate' => true,
-
 
4305
                                            'child_routes' => [
-
 
4306
                    
-
 
4307
                                                'add' => [
-
 
4308
                                                    'type' => Literal::class,
-
 
4309
                                                    'options' => [
-
 
4310
                                                        'route' => '/add',
-
 
4311
                                                        'defaults' => [
-
 
4312
                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
-
 
4313
                                                            'action' => 'add'
-
 
4314
                                                        ]
-
 
4315
                                                    ]
-
 
4316
                                                ],
-
 
4317
                                                'edit' => [
-
 
4318
                                                    'type' => Segment::class,
-
 
4319
                                                    'options' => [
-
 
4320
                                                        'route' => '/edit/:id',
-
 
4321
                                                        'constraints' => [
-
 
4322
                                                            'id' => '[A-Za-z0-9\-]+\=*'
-
 
4323
                                                        ],
-
 
4324
                                                        'defaults' => [
-
 
4325
                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
-
 
4326
                                                            'action' => 'edit'
-
 
4327
                                                        ]
-
 
4328
                                                    ]
-
 
4329
                                                ],
-
 
4330
                                                'delete' => [
-
 
4331
                                                    'type' => Segment::class,
-
 
4332
                                                    'options' => [
-
 
4333
                                                        'route' => '/delete/:id',
-
 
4334
                                                        'constraints' => [
-
 
4335
                                                            'id' => '[A-Za-z0-9\-]+\=*'
-
 
4336
                                                        ],
-
 
4337
                                                        'defaults' => [
-
 
4338
                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
-
 
4339
                                                            'action' => 'delete'
-
 
4340
                                                        ]
-
 
4341
                                                    ]
-
 
4342
                                                ],
-
 
4343
                                                'report' => [
-
 
4344
                                                    'type' => Segment::class,
-
 
4345
                                                    'options' => [
-
 
4346
                                                        'route' => '/report/:id',
-
 
4347
                                                        'constraints' => [
-
 
4348
                                                            'id' => '[A-Za-z0-9\-]+\=*'
-
 
4349
                                                        ],
-
 
4350
                                                        'defaults' => [
-
 
4351
                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
-
 
4352
                                                            'action' => 'report'
-
 
4353
                                                        ]
-
 
4354
                                                    ]
-
 
4355
                                                ], 
-
 
4356
                                                'reportall' => [
-
 
4357
                                                    'type' => Literal::class,
-
 
4358
                                                    'options' => [
-
 
4359
                                                        'route' => '/reportall',
-
 
4360
                                                        'defaults' => [
-
 
4361
                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
-
 
4362
                                                            'action' => 'reportall'
-
 
4363
                                                        ]
-
 
4364
                                                    ]
-
 
4365
                                                ],
-
 
4366
                                                 
-
 
4367
                                                'matriz' => [
-
 
4368
                                                    'type' => Literal::class,
-
 
4369
                                                    'options' => [
-
 
4370
                                                        'route' => '/matriz',
-
 
4371
                                                        'defaults' => [
-
 
4372
                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
-
 
4373
                                                            'action' => 'matriz'
-
 
4374
                                                        ]
-
 
4375
                                                    ]
-
 
4376
                                                ],
-
 
4377
                                                'goals' => [
-
 
4378
                                                    'type' => Segment::class,
-
 
4379
                                                    'options' => [
-
 
4380
                                                        'route' => '/:objective_id/goals',
-
 
4381
                                                        'constraints' => [
-
 
4382
                                                            'objective_id' => '[A-Za-z0-9\-]+\=*'
-
 
4383
                                                        ],
-
 
4384
                                                        'defaults' => [
-
 
4385
                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
-
 
4386
                                                            'action' => 'index'
-
 
4387
                                                        ]
-
 
4388
                                                    ],
-
 
4389
                                                
-
 
4390
                                                    'may_terminate' => true,
-
 
4391
                                                    'child_routes' => [
-
 
4392
                                                        'add' => [
-
 
4393
                                                            'type' => Literal::class,
-
 
4394
                                                            'options' => [
-
 
4395
                                                                'route' => '/add',
-
 
4396
                                                                'defaults' => [
-
 
4397
                                                                    'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
-
 
4398
                                                                    'action' => 'add'
-
 
4399
                                                                ]
-
 
4400
                                                            ]
-
 
4401
                                                        ],
-
 
4402
                                                        'edit' => [
-
 
4403
                                                            'type' => Segment::class,
-
 
4404
                                                            'options' => [
-
 
4405
                                                                'route' => '/edit/:id',
-
 
4406
                                                                'constraints' => [
-
 
4407
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
-
 
4408
                                                                ],
-
 
4409
                                                                'defaults' => [
-
 
4410
                                                                    'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
-
 
4411
                                                                    'action' => 'edit'
-
 
4412
                                                                ]
-
 
4413
                                                            ]
-
 
4414
                                                        ],
-
 
4415
                                                        'delete' => [
-
 
4416
                                                            'type' => Segment::class,
-
 
4417
                                                            'options' => [
-
 
4418
                                                                'route' => '/delete/:id',
-
 
4419
                                                                'constraints' => [
-
 
4420
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
-
 
4421
                                                                ],
-
 
4422
                                                                'defaults' => [
-
 
4423
                                                                    'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
-
 
4424
                                                                    'action' => 'delete'
-
 
4425
                                                                ]
-
 
4426
                                                            ]
-
 
4427
                                                        ],
-
 
4428
                                                        'task' => [
-
 
4429
                                                            'type' => Segment::class,
-
 
4430
                                                            'options' => [
-
 
4431
                                                                'route' => '/:goal_id/task',
-
 
4432
                                                                'constraints' => [
-
 
4433
                                                                    'goal_id' => '[A-Za-z0-9\-]+\=*'
-
 
4434
                                                                ],
-
 
4435
                                                                'defaults' => [
-
 
4436
                                                                    'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
-
 
4437
                                                                    'action' => 'index'
-
 
4438
                                                                ]
-
 
4439
                                                            ],
-
 
4440
                                                        
-
 
4441
                                                            'may_terminate' => true,
-
 
4442
                                                            'child_routes' => [
-
 
4443
                                                                'add' => [
-
 
4444
                                                                    'type' => Literal::class,
-
 
4445
                                                                    'options' => [
-
 
4446
                                                                        'route' => '/add',
-
 
4447
                                                                        'defaults' => [
-
 
4448
                                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
-
 
4449
                                                                            'action' => 'add'
-
 
4450
                                                                        ]
-
 
4451
                                                                    ]
-
 
4452
                                                                ],
-
 
4453
                                                                'edit' => [
-
 
4454
                                                                    'type' => Segment::class,
-
 
4455
                                                                    'options' => [
-
 
4456
                                                                        'route' => '/edit/:id',
-
 
4457
                                                                        'constraints' => [
-
 
4458
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
-
 
4459
                                                                        ],
-
 
4460
                                                                        'defaults' => [
-
 
4461
                                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
-
 
4462
                                                                            'action' => 'edit'
-
 
4463
                                                                        ]
-
 
4464
                                                                    ]
-
 
4465
                                                                ],
-
 
4466
                                                                'delete' => [
-
 
4467
                                                                    'type' => Segment::class,
-
 
4468
                                                                    'options' => [
-
 
4469
                                                                        'route' => '/delete/:id',
-
 
4470
                                                                        'constraints' => [
-
 
4471
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
-
 
4472
                                                                        ],
-
 
4473
                                                                        'defaults' => [
-
 
4474
                                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
-
 
4475
                                                                            'action' => 'delete'
-
 
4476
                                                                        ]
-
 
4477
                                                                    ]
-
 
4478
                                                                ],
-
 
4479
                                                                'view' => [
-
 
4480
                                                                    'type' => Segment::class,
-
 
4481
                                                                    'options' => [
-
 
4482
                                                                        'route' => '/view/:id',
-
 
4483
                                                                        'constraints' => [
-
 
4484
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
-
 
4485
                                                                        ],
-
 
4486
                                                                        'defaults' => [
-
 
4487
                                                                            'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
-
 
4488
                                                                            'action' => 'view'
-
 
4489
                                                                        ]
-
 
4490
                                                                    ]
-
 
4491
                                                                ],
-
 
4492
                                                        ]
-
 
4493
                                                    ],
-
 
4494
                                                ]
-
 
4495
                                            ],
-
 
4496
                                            ]
-
 
4497
                                        ]
4294
                                        'feeds' => [
4498
                                        ,'feeds' => [
4295
                                            'type' => Literal::class,
4499
                                            'type' => Literal::class,
4296
                                            'options' => [
4500
                                            'options' => [
4297
                                                'route' => '/feeds',
4501
                                                'route' => '/feeds',
Línea 4298... Línea 4502...
4298
                                               
4502