Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 4367 Rev 4374
Línea 3453... Línea 3453...
3453
            'surveys' => [
3453
            'surveys' => [
3454
                'type' => Literal::class,
3454
                'type' => Literal::class,
3455
                'options' => [
3455
                'options' => [
3456
                    'route' => '/surveys',
3456
                    'route' => '/surveys',
3457
                    'defaults' => [
3457
                    'defaults' => [
3458
                        'controller' => '\LeadersLinked\Controller\UnknownController',
3458
                        'controller' => '\LeadersLinked\Controller\SurveySectionController',
3459
                        'action' => 'index'
3459
                        'action' => 'index'
3460
                    ]
3460
                    ]
3461
                ],
3461
                ],
3462
                'may_terminate' => true,
3462
                'may_terminate' => true,
3463
                'child_routes' => [
3463
                'child_routes' => [
-
 
3464
                    'form' => [
-
 
3465
                        'type' => Segment::class,
-
 
3466
                        'options' => [
-
 
3467
                            'route' => '/form',
-
 
3468
                            'constraints' => [
-
 
3469
                                
-
 
3470
                            ],
-
 
3471
                            'defaults' => [
-
 
3472
                                'controller' => '\LeadersLinked\Controller\SurveySectionFormController',
-
 
3473
                                'action' => 'index',
-
 
3474
                                'vacancy_uuid' => '',
-
 
3475
                            ],
-
 
3476
                        ],
-
 
3477
                        'may_terminate' => true,
-
 
3478
                        'child_routes' => [
-
 
3479
                            'add' => [
-
 
3480
                                'type' => Segment::class,
-
 
3481
                                'options' => [
-
 
3482
                                    'route' => '/add',
-
 
3483
                                    'defaults' => [
-
 
3484
                                        'controller' => '\LeadersLinked\Controller\SurveySectionFormController',
-
 
3485
                                        'action' => 'add'
-
 
3486
                                    ],
-
 
3487
                                ],
-
 
3488
                            ],
-
 
3489
                            'edit' => [
-
 
3490
                                'type' => Segment::class,
-
 
3491
                                'options' => [
-
 
3492
                                    'route' => '/edit/:id',
-
 
3493
                                    'constraints' => [
-
 
3494
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3495
                                    ],
-
 
3496
                                    'defaults' => [
-
 
3497
                                        'controller' => '\LeadersLinked\Controller\SurveySectionFormController',
-
 
3498
                                        'action' => 'edit'
-
 
3499
                                    ]
-
 
3500
                                ]
-
 
3501
                            ],
-
 
3502
                            'delete' => [
-
 
3503
                                'type' => Segment::class,
-
 
3504
                                'options' => [
-
 
3505
                                    'route' => '/delete/:id',
-
 
3506
                                    'constraints' => [
-
 
3507
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3508
                                    ],
-
 
3509
                                    'defaults' => [
-
 
3510
                                        'controller' => '\LeadersLinked\Controller\SurveySectionFormController',
-
 
3511
                                        'action' => 'delete'
-
 
3512
                                    ]
-
 
3513
                                ]
-
 
3514
                            ]
-
 
3515
                        ],
-
 
3516
                    ],
3464
                ]
3517
                ]
3465
            ],
3518
            ],
Línea 3466... Línea 3519...
3466
            
3519
            
3467
            'building-my-future' => [
3520
            'building-my-future' => [
Línea 3540... Línea 3593...
3540
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
3593
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
3541
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
3594
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
3542
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
3595
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
3543
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
3596
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
3544
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
3597
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
-
 
3598
            \LeadersLinked\Controller\SurveySectionController::class => \LeadersLinked\Factory\Controller\SurveySectionControllerFactory::class,
3545
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
3599
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
3546
            \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationEvaluationControllerFactory::class,
3600
            \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationEvaluationControllerFactory::class,
3547
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
3601
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
3548
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
3602
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
3549
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
3603
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
Línea 3604... Línea 3658...
3604
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
3658
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
3605
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
3659
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
3606
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
3660
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
3607
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
3661
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
3608
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
3662
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
-
 
3663
            '\LeadersLinked\Controller\SurveySectionController' => \LEadersLinked\Controller\SurveySectionController::class,
3609
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
3664
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
3610
            '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class,
3665
            '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class,
3611
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
3666
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
3612
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
3667
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
3613
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
3668
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,