Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 13306 Rev 13307
Línea 5399... Línea 5399...
5399
                    'waiting' => [
5399
                    'waiting' => [
5400
                        'type' => segment::class,
5400
                        'type' => segment::class,
5401
                        'options' => [
5401
                        'options' => [
5402
                            'route' => '/waiting',
5402
                            'route' => '/waiting',
5403
                            'defaults' => [
5403
                            'defaults' => [
5404
                                'controller' => '\LeadersLinked\Controller\UnknownController',
5404
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5405
                                'action' => 'index'
5405
                                'action' => 'index'
5406
                            ]
5406
                            ]
5407
                        ],
5407
                        ],
5408
                        'may_terminate' => true,
5408
                        'may_terminate' => true,
5409
                        'child_routes' => [
5409
                        'child_routes' => [
5410
                            'add' => [
5410
                            'add' => [
5411
                                'type' => Literal::class,
5411
                                'type' => Literal::class,
5412
                                'options' => [
5412
                                'options' => [
5413
                                    'route' => '/add',
5413
                                    'route' => '/add',
5414
                                    'defaults' => [
5414
                                    'defaults' => [
5415
                                        'controller' => '\LeadersLinked\Controller\UnknownController',
5415
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5416
                                        'action' => 'add'
5416
                                        'action' => 'add'
5417
                                    ]
5417
                                    ]
5418
                                ]
5418
                                ]
5419
                            ],
5419
                            ],
5420
                            'edit' => [
5420
                            'edit' => [
Línea 5423... Línea 5423...
5423
                                    'route' => '/edit/:id',
5423
                                    'route' => '/edit/:id',
5424
                                    'constraints' => [
5424
                                    'constraints' => [
5425
                                        'id' => '[A-Za-z0-9\-]+\=*'
5425
                                        'id' => '[A-Za-z0-9\-]+\=*'
5426
                                    ],
5426
                                    ],
5427
                                    'defaults' => [
5427
                                    'defaults' => [
5428
                                        'controller' => '\LeadersLinked\Controller\UnknownController',
5428
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5429
                                        'action' => 'edit'
5429
                                        'action' => 'edit'
5430
                                    ]
5430
                                    ]
5431
                                ]
5431
                                ]
5432
                            ],
5432
                            ],
5433
                            'delete' => [
5433
                            'delete' => [
Línea 5436... Línea 5436...
5436
                                    'route' => '/delete/:id',
5436
                                    'route' => '/delete/:id',
5437
                                    'constraints' => [
5437
                                    'constraints' => [
5438
                                        'id' => '[A-Za-z0-9\-]+\=*'
5438
                                        'id' => '[A-Za-z0-9\-]+\=*'
5439
                                    ],
5439
                                    ],
5440
                                    'defaults' => [
5440
                                    'defaults' => [
5441
                                        'controller' => '\LeadersLinked\Controller\UnknownController',
5441
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5442
                                        'action' => 'delete'
5442
                                        'action' => 'delete'
5443
                                    ]
5443
                                    ]
5444
                                ]
5444
                                ]
5445
                            ],
5445
                            ],
5446
                            'view' => [
5446
                            'view' => [
Línea 5449... Línea 5449...
5449
                                    'route' => '/:id/view',
5449
                                    'route' => '/:id/view',
5450
                                    'constraints' => [
5450
                                    'constraints' => [
5451
                                        'id' => '[A-Za-z0-9\-]+\=*'
5451
                                        'id' => '[A-Za-z0-9\-]+\=*'
5452
                                    ],
5452
                                    ],
5453
                                    'defaults' => [
5453
                                    'defaults' => [
5454
                                        'controller' => '\LeadersLinked\Controller\UnknownController',
5454
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5455
                                        'action' => 'index'
5455
                                        'action' => 'index'
5456
                                    ]
5456
                                    ]
5457
                                ]
5457
                                ]
5458
                            ],
5458
                            ],
5459
                        ],
5459
                        ],