Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 13305 Rev 13306
Línea 5245... Línea 5245...
5245
            'development-and-content' => [
5245
            'development-and-content' => [
5246
                'type' => Literal::class,
5246
                'type' => Literal::class,
5247
                'options' => [
5247
                'options' => [
5248
                    'route' => '/development-and-content',
5248
                    'route' => '/development-and-content',
5249
                    'defaults' => [
5249
                    'defaults' => [
5250
                        'controller' => '\LeadersLinked\Controller\UnknownController',
5250
                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5251
                        'action' => 'index'
5251
                        'action' => 'index'
5252
                    ]
5252
                    ]
5253
                ],
5253
                ],
5254
                'may_terminate' => true,
5254
                'may_terminate' => true,
5255
                'child_routes' => [
5255
                'child_routes' => [
Línea 5259... Línea 5259...
5259
                            'route' => '/add[/:id]',
5259
                            'route' => '/add[/:id]',
5260
                            'constraints' => [
5260
                            'constraints' => [
5261
                                'id' => '[A-Za-z0-9\-]+\=*'
5261
                                'id' => '[A-Za-z0-9\-]+\=*'
5262
                            ],
5262
                            ],
5263
                            'defaults' => [
5263
                            'defaults' => [
5264
                                'controller' => '\LeadersLinked\Controller\UnknownController',
5264
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5265
                                'action' => 'add'
5265
                                'action' => 'add'
5266
                            ]
5266
                            ]
5267
                        ]
5267
                        ]
5268
                    ],
5268
                    ],
5269
                    'edit' => [
5269
                    'edit' => [
5270
                        'type' => Segment::class,
5270
                        'type' => Segment::class,
5271
                        'options' => [
5271
                        'options' => [
5272
                            'route' => '/edit',
5272
                            'route' => '/edit',
Línea 5273... Línea 5273...
5273
                           
5273
                           
5274
                            'defaults' => [
5274
                            'defaults' => [
5275
                                'controller' => '\LeadersLinked\Controller\UnknownController',
5275
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5276
                                'action' => 'edit'
5276
                                'action' => 'edit'
5277
                            ]
5277
                            ]
5278
                        ]
5278
                        ]
5279
                    ],
5279
                    ],
5280
                    'delete' => [
5280
                    'delete' => [
5281
                        'type' => Segment::class,
5281
                        'type' => Segment::class,
5282
                        'options' => [
5282
                        'options' => [
5283
                            'route' => '/delete',
5283
                            'route' => '/delete',
5284
                            'defaults' => [
5284
                            'defaults' => [
5285
                                'controller' => '\LeadersLinked\Controller\UnknownController',
5285
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5286
                                'action' => 'delete'
5286
                                'action' => 'delete'
5287
                            ]
5287
                            ]
5288
                        ]
5288
                        ]
5289
                    ],
5289
                    ],
5290
                    'feed' => [
5290
                    'feed' => [
5291
                        'type' => Segment::class,
5291
                        'type' => Segment::class,
5292
                        'options' => [
5292
                        'options' => [
5293
                            'route' => '/feed',
5293
                            'route' => '/feed',
5294
                            'defaults' => [
5294
                            'defaults' => [
5295
                                'controller' => '\LeadersLinked\Controller\UnknownController',
5295
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5296
                                'action' => 'feed'
5296
                                'action' => 'feed'
5297
                            ],
5297
                            ],
5298
                        ],
5298
                        ],
5299
                    ],
5299
                    ],
5300
                    'timeline' => [
5300
                    'timeline' => [
5301
                        'type' => Segment::class,
5301
                        'type' => Segment::class,
5302
                        'options' => [
5302
                        'options' => [
5303
                            'route' => '/timeline',                                           
5303
                            'route' => '/timeline',                                           
5304
                            'defaults' => [
5304
                            'defaults' => [
5305
                                'controller' => '\LeadersLinked\Controller\UnknownController',
5305
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5306
                                'action' => 'timeline'
5306
                                'action' => 'timeline'
5307
                            ],
5307
                            ],
5308
                        ],
5308
                        ],
5309
                    ],
5309
                    ],
5310
                    'comments' => [
5310
                    'comments' => [
5311
                        'type' => Segment::class,
5311
                        'type' => Segment::class,
5312
                        'options' => [
5312
                        'options' => [
Línea 5313... Línea 5313...
5313
                            'route' => '/comments',
5313
                            'route' => '/comments',
5314
                            
5314
                            
5315
                            'defaults' => [
5315
                            'defaults' => [
5316
                                'controller' => '\LeadersLinked\Controller\UnknownController',
5316
                                'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5317
                                'action' => 'comment'
5317
                                'action' => 'comment'
5318
                            ],
5318
                            ],
5319
                        ],
5319
                        ],
Línea 5325... Línea 5325...
5325
                                    'route' => '/delete/:comment',
5325
                                    'route' => '/delete/:comment',
5326
                                    'constraints' => [
5326
                                    'constraints' => [
5327
                                        'comment' => '[A-Za-z0-9\-]+\=*',
5327
                                        'comment' => '[A-Za-z0-9\-]+\=*',
5328
                                    ],
5328
                                    ],
5329
                                    'defaults' => [
5329
                                    'defaults' => [
5330
                                        'controller' => '\LeadersLinked\Controller\UnknownController',
5330
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5331
                                        'action' => 'commentDelete'
5331
                                        'action' => 'commentDelete'
5332
                                    ]
5332
                                    ]
5333
                                ]
5333
                                ]
5334
                            ],
5334
                            ],
5335
                            'answer' => [
5335
                            'answer' => [
Línea 5338... Línea 5338...
5338
                                    'route' => '/answer/:comment',
5338
                                    'route' => '/answer/:comment',
5339
                                    'constraints' => [
5339
                                    'constraints' => [
5340
                                        'comment' => '[A-Za-z0-9\-]+\=*',
5340
                                        'comment' => '[A-Za-z0-9\-]+\=*',
5341
                                    ],
5341
                                    ],
5342
                                    'defaults' => [
5342
                                    'defaults' => [
5343
                                        'controller' => '\LeadersLinked\Controller\UnknownController',
5343
                                        'controller' => '\LeadersLinked\Controller\DevelopmentContentController',
5344
                                        'action' => 'answer'
5344
                                        'action' => 'answer'
5345
                                    ]
5345
                                    ]
5346
                                ]
5346
                                ]
5347
                            ],
5347
                            ],
5348
                        ]
5348
                        ]