Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 13028 | Rev 13169 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

<?php

declare(strict_types=1);

namespace LeadersLinked;

use Laminas\Router\Http\Literal;
use Laminas\Router\Http\Segment;
use Laminas\ServiceManager\Factory\InvokableFactory;

return [
    'navigation' => [
        'menu' => [
        ],
        'footer' => [
        ]
    ],
    'router' => [
        'routes' => [
            'home' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\AuthController',
                        'action' => 'index'
                    ]
                ]
            ],
            'signin-company' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/signin-company',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\AuthController',
                        'action' => 'signinCompany'
                    ]
                ],
                'may_terminate' => true,
            ],
            'signin-admin' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/signin-admin',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\AuthController',
                        'action' => 'signinAdmin'
                    ]
                ],
                'may_terminate' => true,
            ],
            'signout' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/signout',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\AuthController',
                        'action' => 'signout'
                    ]
                ],
                'may_terminate' => true,
            ],
            'dashboard' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/dashboard',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\DashboardController',
                        'action' => 'index'
                    ]
                ]
            ],
            'storage' => [
                'type' => Segment::class,
                'options' => [
                    'route' => '/storage/type/:type[/code/:code][/code2/:code2][/filename/:filename]',
                    'constraints' => [
                        'type' => 'user|user-profile|user-cover|company|company-cover|group|group-cover|job|chat|image|feed|post|post-type|microlearning-topic|microlearning-capsule|microlearning-slide|recruitment-selection',
                        'code' => '[A-Za-z0-9\-]+\=*',
                        'code2' => '[A-Za-z0-9\-]+\=*',
                        'filename' => '[a-zA-Z0-9\-\_]+\.(jpg|jpeg|gif|png|mp3|mp4|flv|doc|pdf|docx|xls|ppt|pdf|xlsx|pptx)'
                    ],
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\StorageController',
                        'action' => 'download'
                    ]
                ]
            ],
            /*             * *** START TEST **** */
            'test' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/test',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\TestController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'method-one' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/method-one',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\TestController',
                                'action' => 'methodOne'
                            ]
                        ]
                    ],
                    'method-one' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/method-one',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\TestController',
                                'action' => 'methodOne'
                            ]
                        ]
                    ],
                    'method-two' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/method-two',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\TestController',
                                'action' => 'methodTwo'
                            ]
                        ]
                    ],
                    'method-three' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/method-three',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\TestController',
                                'action' => 'methodThree'
                            ]
                        ]
                    ],
                    'method-four' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/method-four',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\TestController',
                                'action' => 'methodFour'
                            ]
                        ]
                    ],
                ],
            ],
            /*             * *** END TEST **** */

            /*             * * START COMPANIES ** */
            'companies' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/companies',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\CompanyController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'services' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/services/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\CompanyController',
                                'action' => 'services'
                            ]
                        ]
                    ],
                    'roles' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/roles/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\CompanyController',
                                'action' => 'roles'
                            ]
                        ]
                    ],
                    'edit' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/edit/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\CompanyController',
                                'action' => 'edit'
                            ]
                        ]
                    ],
                ],
            ],
            /*             * * START USERS ** */
            'users' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/users',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UserController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'change-password' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/change-password/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'change-password'
                            ]
                        ]
                    ],
                    'unblock' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/unblock/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'unblock'
                            ]
                        ]
                    ],
                    'email-verify' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/email-verify/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'emailVerify'
                            ]
                        ]
                    ],
                    'invite' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/invite',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'invite'
                            ]
                        ]
                    ],
                    'accept' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/accept/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'accept'
                            ]
                        ]
                    ],
                    'cancel' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/cancel/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'cancel'
                            ]
                        ]
                    ],
                    'reject' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/reject/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'reject'
                            ]
                        ]
                    ],
                    'edit' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/edit/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'edit'
                            ]
                        ]
                    ],
                    'upload' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/upload',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\UserController',
                                'action' => 'upload'
                            ]
                        ]
                    ],
                ]
            ],
            /** START FEEDS * */
            'feeds' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/feeds',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\FeedController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'timeline' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/timeline[/id/:id][/type/:type][/urgent/:urgent][/myt_id/:myt_id][/feed/:feed][/topic_id/:topic_id][/hptg_id/:hptg_id]',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                                'type' => 'user|company|hptg|mytq|myta',
                                'myt_id' => '[A-Za-z0-9\-]+\=*',
                                'hptg_id'=>'[A-Za-z0-9\-]+\=*',
                                'feed' => '[A-Za-z0-9\-]+\=*',
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
                                'urgent' => 'u',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\FeedController',
                                'action' => 'timeline'
                            ]
                        ]
                    ],
                    'onefeed' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/onefeed[/:feed_id][/:topic_id][/:group_id]',
                            'constraints' => [
                                'group_id' => '[A-Za-z0-9\-]+\=*',
                                'feed_id' => '[A-Za-z0-9\-]+\=*',
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\FeedController',
                                'action' => 'oneFeed'
                            ]
                        ]
                    ],
                    'delete' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/delete/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\FeedController',
                                'action' => 'delete'
                            ],
                        ]
                    ],
                    'comments' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/comments/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\FeedController',
                                'action' => 'comment'
                            ],
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:comment',
                                    'constraints' => [
                                        'comment' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\FeedController',
                                        'action' => 'commentDelete'
                                    ]
                                ]
                            ],

                            'answer' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/answer/:comment',
                                    'constraints' => [
                                        'comment' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\FeedController',
                                        'action' => 'answer'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'add' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/add[/company/:company_id][/group/:group_id][/encoding/:encoding][/type/:type][/feed/:feed][/myt_id/:myt_id][/hptg_id/:hptg_id][/topic_id/:topic_id]',
                            'constraints' => [
                                'company_id' => '[A-Za-z0-9\-]+\=*',
                                'group_id' => '[A-Za-z0-9\-]+\=*',
                                'hptg_id' => '[A-Za-z0-9\-]+\=*',
                                'topic_id' => '[A-Za-z0-9\-]+\=*',
                                'myt_id' => '[A-Za-z0-9\-]+\=*',
                                'type' => 'group|company|hptg|mytq|myta',
                                'encoding' => 'base64'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\FeedController',
                                'action' => 'add'
                            ]
                        ]
                    ],
                ],
            ],
            /** START JOBS * */
            'jobs' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/jobs',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\JobController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'add' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/add',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\JobController',
                                'action' => 'add'
                            ]
                        ],
                    ],
                    'delete' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/delete/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\JobController',
                                'action' => 'delete'
                            ]
                        ],
                    ],
                    'users-who-applied' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/users-who-applied/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\JobController',
                                'action' => 'usersWhoApplied'
                            ]
                        ],
                    ],
                    'edit' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/edit/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\JobController',
                                'action' => 'edit'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'status' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/status',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'status'
                                    ]
                                ],
                            ],
                            'title' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/title',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'title'
                                    ]
                                ],
                            ],
                            'last-date-of-application' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/last-date-of-application',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'lastDateOfApplication'
                                    ]
                                ],
                            ],
                            'experience' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/experience',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'experience'
                                    ]
                                ],
                            ],
                            'employment-type' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/employment-type',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'employmentType'
                                    ]
                                ],
                            ],
                            'job-category' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/job-category',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'jobCategory'
                                    ]
                                ],
                            ],
                            'extended' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/extended',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'extended'
                                    ]
                                ],
                            ],
                            'location' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/location',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'location'
                                    ]
                                ],
                            ],
                            'salary' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/salary',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'salary'
                                    ]
                                ],
                            ],
                            'degrees' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/degrees',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'degree'
                                    ]
                                ],
                            ],
                            'languages' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/languages',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'language'
                                    ]
                                ],
                            ],
                            'skills' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/skills',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'skill'
                                    ]
                                ],
                            ],
                            'how-apply' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/how-apply',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobController',
                                        'action' => 'howApply'
                                    ]
                                ],
                            ],
                        ],
                    ]
                ],
            ],
            /*             * * END JOB * */

            /*             * *** START PROFILE *** */
            'profile' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/profile',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\ProfileController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'extended' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/extended',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'extended'
                            ]
                        ]
                    ],
                    'image' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/image/:operation',
                            'constraints' => [
                                'operation' => 'upload|delete'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'image'
                            ]
                        ]
                    ],
                    'cover' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/cover/:operation',
                            'constraints' => [
                                'operation' => 'upload|delete'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'cover'
                            ]
                        ]
                    ],
                    'header' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/header/:operation',
                            'constraints' => [
                                'operation' => 'upload|delete'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'header'
                            ]
                        ]
                    ],
                    'footer' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/footer/:operation',
                            'constraints' => [
                                'operation' => 'upload|delete'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'footer'
                            ]
                        ]
                    ],
                    'website' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/website',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'website'
                            ]
                        ]
                    ],
                    'foundation_year' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/foundation_year',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'foundationYear'
                            ]
                        ]
                    ],
                    'location' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/location/:operation[/:id]',
                            'constraints' => [
                                'operation' => 'add|edit|delete',
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'location'
                            ]
                        ]
                    ],
                    'social-network' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/social-network',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'socialNetwork'
                            ]
                        ]
                    ],
                    'industry' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/industry',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'industry'
                            ]
                        ]
                    ],
                    'company-size' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/company-size',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ProfileController',
                                'action' => 'companySize'
                            ]
                        ]
                    ]
                ],
            ],
            /*             * * END PROFILE * */

            /*             * *** START FOLLOWERS *** */
            'followers' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/followers',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\FollowerController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'delete' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/delete/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\FollowerController',
                                'action' => 'delete'
                            ]
                        ]
                    ],
                ],
            ],
            /*             * *** END FOLLOWERS *** */

            /*             * * START MICRO_LEARNING ** */
            'microlearning' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/microlearning',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\MicrolearningController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'overview' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/overview',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
                                'action' => 'overview'
                            ]
                        ],
                    ],
                    'reports' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/reports',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'progress' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/progress',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
                                        'action' => 'progress'
                                    ]
                                ]
                            ],
                            'comments-for-capsule' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/comments-for-capsule',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
                                        'action' => 'commentsForCapsule'
                                    ]
                                ]
                            ],
                            'devices' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/devices',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningReportsController',
                                        'action' => 'devices'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'content' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/content',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\MicrolearningContentController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'quizzes' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/quizzes',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/:quiz_id/edit',
                                            'constraints' => [
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/:quiz_id/delete',
                                            'constraints' => [
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ],
                                    'check' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/:quiz_id/check',
                                            'constraints' => [
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
                                                'action' => 'check'
                                            ]
                                        ]
                                    ],
                                    'publish' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/:quiz_id/publish',
                                            'constraints' => [
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
                                                'action' => 'publish'
                                            ]
                                        ]
                                    ],
                                    'copy' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/:quiz_id/copy',
                                            'constraints' => [
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuizController',
                                                'action' => 'copy'
                                            ]
                                        ]
                                    ],
                                    'questions' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/:quiz_id/questions',
                                            'constraints' => [
                                                'quiz_id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
                                                'action' => 'index'
                                            ]
                                        ],
                                        'may_terminate' => true,
                                        'child_routes' => [
                                            'add' => [
                                                'type' => Literal::class,
                                                'options' => [
                                                    'route' => '/add',
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
                                                        'action' => 'add'
                                                    ]
                                                ]
                                            ],
                                            'edit' => [
                                                'type' => Segment::class,
                                                'options' => [
                                                    'route' => '/:question_id/edit',
                                                    'constraints' => [
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
                                                    ],
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
                                                        'action' => 'edit'
                                                    ]
                                                ]
                                            ],
                                            'delete' => [
                                                'type' => Segment::class,
                                                'options' => [
                                                    'route' => '/:question_id/delete',
                                                    'constraints' => [
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
                                                    ],
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningQuestionController',
                                                        'action' => 'delete'
                                                    ]
                                                ]
                                            ],
                                            'answers' => [
                                                'type' => Segment::class,
                                                'options' => [
                                                    'route' => '/:question_id/answers',
                                                    'constraints' => [
                                                        'question_id' => '[A-Za-z0-9\-]+\=*'
                                                    ],
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
                                                        'action' => 'index'
                                                    ]
                                                ],
                                                'may_terminate' => true,
                                                'child_routes' => [
                                                    'add' => [
                                                        'type' => Literal::class,
                                                        'options' => [
                                                            'route' => '/add',
                                                            'defaults' => [
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
                                                                'action' => 'add'
                                                            ]
                                                        ]
                                                    ],
                                                    'edit' => [
                                                        'type' => Segment::class,
                                                        'options' => [
                                                            'route' => '/:answer_id/edit',
                                                            'constraints' => [
                                                                'answer_id' => '[A-Za-z0-9\-]+\=*'
                                                            ],
                                                            'defaults' => [
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
                                                                'action' => 'edit'
                                                            ]
                                                        ]
                                                    ],
                                                    'delete' => [
                                                        'type' => Segment::class,
                                                        'options' => [
                                                            'route' => '/:answer_id/delete',
                                                            'constraints' => [
                                                                'answer_id' => '[A-Za-z0-9\-]+\=*'
                                                            ],
                                                            'defaults' => [
                                                                'controller' => '\LeadersLinked\Controller\MicrolearningAnswerController',
                                                                'action' => 'delete'
                                                            ]
                                                        ]
                                                    ],
                                                ]
                                            ],
                                        ]
                                    ],
                                ]
                            ],
                            'topics' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/topics',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningTopicController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                            'capsules' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/capsules',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/add/topic/:topic_uuid',
                                            'constraints' => [
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/topic/:topic_uuid/id/:capsule_uuid',
                                            'constraints' => [
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/topic/:topic_uuid/id/:capsule_uuid',
                                            'constraints' => [
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ],
                                    'users' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/users/topic/:topic_uuid/id/:capsule_uuid/type/:type',
                                            'constraints' => [
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'type' => 'all|active',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningCapsuleController',
                                                'action' => 'users'
                                            ]
                                        ]
                                    ],
                                ]
                            ],
                            'slides' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/slides',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/add/topic/:topic_uuid/capsule/:capsule_uuid',
                                            'constraints' => [
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
                                            'constraints' => [
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
                                            'constraints' => [
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ],
                                    'text' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/text/topic/:topic_uuid/capsule/:capsule_uuid/slide/:slide_uuid',
                                            'constraints' => [
                                                'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                                'slide_uuid' => '[A-Za-z0-9\-]+\=*',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningSlideController',
                                                'action' => 'text'
                                            ]
                                        ]
                                    ],
                                ]
                            ],
                        ],
                    ],
                    'students' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/students',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'timeline' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/timeline/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
                                        'action' => 'timeline'
                                    ]
                                ]
                            ],
                            'change-password' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/change-password/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
                                        'action' => 'change-password'
                                    ]
                                ]
                            ],
                            'unblock' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/unblock/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningStudentsController',
                                        'action' => 'unblock'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'access-for-students' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/access-for-students',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'revoke' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/revoke/topic/:topic_uuid/capsule/:capsule_uuid/user_uuid/:user_uuid',
                                    'constraints' => [
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                        'user_uuid' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
                                        'action' => 'revoke'
                                    ]
                                ]
                            ],
                            'unlimit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/unlimit/topic/:topic_uuid/capsule/:capsule_uuid/user_uuid/:user_uuid',
                                    'constraints' => [
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                        'user_uuid' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
                                        'action' => 'unlimit'
                                    ]
                                ]
                            ],
                            'upload' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/upload/topic/:topic_uuid/capsule/:capsule_uuid',
                                    'constraints' => [
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
                                        'action' => 'upload'
                                    ]
                                ]
                            ],
                            'notification' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/notification/topic/:topic_uuid/capsule/:capsule_uuid',
                                    'constraints' => [
                                        'topic_uuid' => '[A-Za-z0-9\-]+\=*',
                                        'capsule_uuid' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningAccessForStudentsController',
                                        'action' => 'notification'
                                    ]
                                ]
                            ],
                        ],
                    ],
                    'settings' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/settings',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\MicrolearningController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'student-types' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/student-types',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                            'functions' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/functions',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                            'sectors' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/sectors',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserSectorController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                            'programs' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/programs',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserProgramController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                            'groups' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/groups',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserGroupController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                            'companies' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/companies',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                            'partners' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/partners',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                            'institutions' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/institutions',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ]
                                ]
                            ],
                        ]
                    ],
                ],
            ],
            /*             * * START PUBLICATIONS ** */
            'publications' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/publications',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\DashboardController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'pages' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/pages',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\PageController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PageController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PageController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PageController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'posts' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/posts',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\PostController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PostController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PostController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PostController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                ]
            ],
            /*             * * START SELF EVALUATION ** */
            'self-evaluation' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/self-evaluation',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'forms' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/forms',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'users' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/users',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/add/:form_id/:user_id',
                                    'constraints' => [
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:form_id/:user_id',
                                    'constraints' => [
                                        'form_id' => '[A-Za-z0-9\-]+\=*',
                                        'user_id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationFormUserController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'reviews' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/reviews',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'report' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SelfEvaluationReviewController',
                                        'action' => 'report'
                                    ]
                                ]
                            ],
                        ]
                    ],
                ]
            ],
            /*             * * END SELF EVALUATION ** */

            /*             * * START PERFOMANCE EVALUATION ** */
            'performance-evaluation' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/performance-evaluation',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\SelfEvaluationController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'forms' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/forms',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
                                        'action' => 'delete'
                                    ]
                                ]
                                    ],
                            'report' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationFormController',
                                        'action' => 'report'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'evaluations' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/evaluations',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],
                            'self' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/self/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                        'action' => 'self'
                                    ]
                                ]
                            ],
                            'both' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/both/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                        'action' => 'both'
                                    ]
                                ]
                            ],
                            'superviser' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/superviser/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                        'action' => 'superviser'
                                    ]
                                ]
                            ],
                            'report-self' =>[
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report-self/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                        'action' => 'reportSelf',
                                    ],
                                ],
                            ],
                            'report-both' =>[
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report-both/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                        'action' => 'reportBoth',
                                    ],
                                ],
                            ],
                            'report-superviser' =>[
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report-superviser/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController',
                                        'action' => 'reportSupervisor',
                                    ],
                                ],
                            ],
                            'user-by-email' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/user-by-email',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
                                        'action' => 'email'
                                    ]
                                ]
                            ],      
                        ]
                    ],
                ]
            ],
            /*             * * END PERFORMANCE EVALUATION ** */

            /*             * * START SETTINGS ** */
            'settings' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/settings',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\DashboardController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'company-sizes' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/company-sizes',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\CompanySizeController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompanySizeController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'competency-types' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/competency-types',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],
                            'import' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/import',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompetencyTypeController',
                                        'action' => 'import'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'behaviors' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/behaviors',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\BehaviorsController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\BehaviorsController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'competencies' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/competencies',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\CompetencyController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],
                            'import' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/import',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CompetencyController',
                                        'action' => 'import'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'degrees' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/degrees',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\DegreeController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\DegreeController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'group-types' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/competency-types',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'industries' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/industries',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\IndustryController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\IndustryController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'group-types' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/group-types',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\GroupTypeController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\GroupTypeController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'job-categories' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/job-categories',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\JobCategoryController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobCategoryController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'jobs-description' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/jobs-description',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\JobDescriptionController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],
                            'report' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
                                        'action' => 'report'
                                    ]
                                ]
                            ],
                            'import' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/import',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\JobDescriptionController',
                                        'action' => 'import'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'email-templates' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/email-templates',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\EmailTemplateController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\EmailTemplateController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'positions' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/positions',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\PositionController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PositionController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PositionController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PositionController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],
                            'subordinates' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/subordinates/:job_description_id',
                                    'constraints' => [
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PositionController',
                                        'action' => 'subordinates'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'push-templates' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/push-templates',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\PushTemplateController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PushTemplateController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'skills' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/skills',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SkillController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SkillController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SkillController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SkillController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                ]
            ],
        /*         * * FIN SETTINGS ** */
            
            'own-professional-network' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/own-professional-network',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UnknownController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                ]
            ],
            
            'organizational-design' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/organizational-design',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UnknownController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                ]
            ],
            
            'planning-objectives-and-goals' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/planning-objectives-and-goals',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'objectives' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/objectives',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
                                'action' => 'index'
                            ]
                        ],
                        
                        'may_terminate' => true,
                        'child_routes' => [

                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],
                            'report' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
                                        'action' => 'report'
                                    ]
                                ]
                            ], 
                            'reportall' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/reportall',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
                                        'action' => 'reportall'
                                    ]
                                ]
                            ],
                             
                            'matriz' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/matriz',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController',
                                        'action' => 'matriz'
                                    ]
                                ]
                            ],
                            'goals' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/:objective_id/goals',
                                    'constraints' => [
                                        'objective_id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
                                        'action' => 'index'
                                    ]
                                ],
                            
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ],
                                    'task' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/:goal_id/task',
                                            'constraints' => [
                                                'goal_id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
                                                'action' => 'index'
                                            ]
                                        ],
                                    
                                        'may_terminate' => true,
                                        'child_routes' => [
                                            'add' => [
                                                'type' => Literal::class,
                                                'options' => [
                                                    'route' => '/add',
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
                                                        'action' => 'add'
                                                    ]
                                                ]
                                            ],
                                            'edit' => [
                                                'type' => Segment::class,
                                                'options' => [
                                                    'route' => '/edit/:id',
                                                    'constraints' => [
                                                        'id' => '[A-Za-z0-9\-]+\=*'
                                                    ],
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
                                                        'action' => 'edit'
                                                    ]
                                                ]
                                            ],
                                            'delete' => [
                                                'type' => Segment::class,
                                                'options' => [
                                                    'route' => '/delete/:id',
                                                    'constraints' => [
                                                        'id' => '[A-Za-z0-9\-]+\=*'
                                                    ],
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
                                                        'action' => 'delete'
                                                    ]
                                                ]
                                            ],
                                            'view' => [
                                                'type' => Segment::class,
                                                'options' => [
                                                    'route' => '/view/:id',
                                                    'constraints' => [
                                                        'id' => '[A-Za-z0-9\-]+\=*'
                                                    ],
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController',
                                                        'action' => 'view'
                                                    ]
                                                ]
                                            ],
                                    ]
                                ],
                            ]
                        ],
                        ]
                    ]
                    
                ]
            ],
            
            'development-and-training' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/development-and-training',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UnknownController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                ]
            ],

            
            'recruitment-and-selection' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/recruitment-and-selection',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'vacancies' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/vacancies',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionVacancyController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'candidates' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/candidates[/:vacancy_uuid]',
                            'constraints' => [
                                'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
                                'action' => 'index',
                                'vacancy_uuid' => '',
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],
                            'email' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/email',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
                                        'action' => 'email'
                                    ]
                                ]
                            ],
                        ]
                    ],
                    'user-by-email' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/user-by-email',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionCandidateController',
                                'action' => 'email'
                            ]
                        ]
                    ],
                    'interview' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/interview',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewController',
                                'action' => 'index',
                            ],
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'form' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/form[/:vacancy_uuid]',
                                    'constraints' => [
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
                                        'action' => 'index',
                                        'vacancy_uuid' => '',
                                    ],
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
                                                'action' => 'add'
                                            ],
                                        ],
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:interview_uuid',
                                            'constraints' => [
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
                                                'action' => 'edit'
                                            ],
                                        ],
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:interview_uuid',
                                            'constraints' => [
                                                'interview_uuid' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
                                                'action' => 'delete'
                                            ],
                                        ],
                                    ],
                                ],
                            ],
                            'file' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/:interview_uuid/file',
                                    'constraints' => [
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
                                        'action' => 'index'
                                    ],
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Literal::class,
                                        'options' => [
                                            'route' => '/add',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:id',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ],
                                ]
                            ],
                            'report' =>[
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report/:interview_uuid',
                                    'constraints' => [
                                        'interview_uuid' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
                                        'action' => 'report',
                                    ],
                                ],
                            ],
                            'vacancy' =>[
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/vacancy/:vacancy_uuid',
                                    'constraints' => [
                                        'vacancy_uuid' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
                                        'action' => 'vacancy',
                                    ],
                                ],
                            ],
                            'type' =>[
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/type/:candidate_uuid',
                                    'constraints' => [
                                        'candidate_uuid' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController',
                                        'action' => 'type',
                                    ],
                                ],
                            ],
                        ],
                    ],               
                ],
            ],
            
            'induction' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/induction',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UnknownController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                ]
            ],
            
            'organizational-climate' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/organizational-climate',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'add' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/add',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
                                'action' => 'add'
                            ],
                        ],
                    ],
                    'edit' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/edit/:id',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
                                'action' => 'edit'
                            ],
                        ],
                    ],
                    'delete' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/delete/:id',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
                                'action' => 'delete'
                            ],
                        ],
                    ],
                    'segment' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/segment/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateController',
                                'action' => 'segment'
                            ],
                        ],
                    ],
                    'form' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/form',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
                                'action' => 'index',
                            ],
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
                                        'action' => 'add'
                                    ],
                                ],
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateFormController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ],
                    ],
                    'test' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/test[/:organizationalClimate_id]',
                            'constraints' => [
                                'organizationalClimate_id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
                                'action' => 'index',
                                'organizationalClimate_id' => '',
                            ],
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
                                        'action' => 'add',
                                    ],
                                ],
                            ],
                            'report' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report/:uuid',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
                                        'action' => 'report',
                                    ],
                                ],
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateTestController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ],
                    ],
                    'report' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/report[/:organizationalClimate_id]',
                            'constraints' => [
                                'organizationalClimate_id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
                                'action' => 'index',
                                'organizationalClimate_id' => '',
                            ],
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'all' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/all',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
                                        'action' => 'all',
                                    ]
                                ]
                            ],
                            'overview' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/overview',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
                                        'action' => 'overview',
                                    ]
                                ]
                            ],
                            'csv' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/csv',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\OrganizationalClimateReportController',
                                        'action' => 'csv',
                                    ]
                                ]
                            ],
                        ],
                    ],
                ],
            ],
            
            'culture' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/culture',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UnknownController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                ]
            ],
            
            'communication' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/communication',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\CommunicationController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'search-people' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/search-people',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\CommunicationCompanyController',
                                'action' => 'searchPeople'
                            ]
                        ]
                    ],
                    'inmail' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/inmail[/:id]',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\CommunicationCompanyController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'block' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/block',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CommunicationCompanyController',
                                        'action' => 'blockConversation'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/delete',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CommunicationCompanyController',
                                        'action' => 'deleteConversation'
                                    ]
                                ]
                            ],
                            'message' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/message',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\CommunicationCompanyController',
                                        'action' => 'message'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'send' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/send[/encoding/:encoding]',
                                            'constraints' => [
                                                'encoding' => 'base64'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\CommunicationCompanyController',
                                                'action' => 'sendMessage'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete/:message',
                                            'constraints' => [
                                                'message' => '[A-Za-z0-9\-]+\=*',
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\CommunicationCompanyController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ],
                                ],
                            ],
                        ],
                    ],
                   
                ]
            ],
            
            'career-development' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/career-development',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UnknownController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                ]
            ],
            
            'survey' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/survey',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\SurveyController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'add' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/add',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SurveyController',
                                'action' => 'add'
                            ],
                        ],
                    ],
                    'edit' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/edit/:id',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SurveyController',
                                'action' => 'edit'
                            ],
                        ],
                    ],
                    'delete' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/delete/:id',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SurveyController',
                                'action' => 'delete'
                            ],
                        ],
                    ],
                    'segment' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/segment/:id',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SurveyController',
                                'action' => 'segment'
                            ],
                        ],
                    ],
                    'form' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/form',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SurveyFormController',
                                'action' => 'index',
                            ],
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
                                        'action' => 'add'
                                    ],
                                ],
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyFormController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ],
                    ],
                    'test' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/test[/:survey_id]',
                            'constraints' => [
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SurveyTestController',
                                'action' => 'index',
                                'survey_id' => '',
                            ],
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
                                        'action' => 'add',
                                    ],
                                ],
                            ],
                            'report' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/report/:uuid',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
                                        'action' => 'report',
                                    ],
                                ],
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyTestController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ],
                    ],
                    'report' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/report[/:survey_id]',
                            'constraints' => [
                                'survey_id' => '[A-Za-z0-9\-]+\=*'
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\SurveyReportController',
                                'action' => 'index',
                                'survey_id' => '',
                            ],
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'all' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/all',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
                                        'action' => 'all',
                                    ]
                                ]
                            ],
                            'overview' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/overview',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
                                        'action' => 'overview',
                                    ]
                                ]
                            ],
                            'csv' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/csv',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\SurveyReportController',
                                        'action' => 'csv',
                                    ]
                                ]
                            ],
                        ],
                    ],
                ]
            ],
            
            'building-my-future' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/building-my-future',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UnknownController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                ]
            ],

            'csrf' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/csrf',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\ChatController',
                        'action' => 'csrf'
                    ]
                ]
            ],
            'chat' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/chat',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\ChatController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    // Inicio de los Routes del Chat //

                    'heart-beat' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/heart-beat',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'heartBeat',
                            ],
                        ],
                    ],
                    'create-group' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/create-group',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'createGroup',
                            ],
                        ],
                    ],
                    'add-user-to-group' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/add-user-to-group/:group_id',
                            'constraints' => [
                                'group_id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'addUserToGroup',
                            ],
                        ],
                    ],
                    'mark-seen' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/mark-seen/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'markSeen',
                            ],
                        ],
                    ],
                    'mark-received' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/mark-received/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'markReceived',
                            ],
                        ],
                    ],
                    'remove-user-from-group' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/remove-user-from-group/:group_id/:user_id',
                            'constraints' => [
                                'group_id' => '[A-Za-z0-9\-]+\=*',
                                'user_id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'removeUserFromGroup',
                            ],
                        ],
                    ],
                    'get-all-messages' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/get-all-messages/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'getAllMessages',
                            ],
                        ],
                    ],
                    'send' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/send/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'send',
                            ],
                        ],
                    ],
                    'get-contacts-availables-for-group' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/get-contacts-availables-for-group/:group_id',
                            'constraints' => [
                                'group_id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'contactAvailableGroupList',
                            ],
                        ],
                    ],
                    'get-contact-group-list' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/get-contact-group-list/:group_id',
                            'constraints' => [
                                'group_id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'contactGroupList',
                            ],
                        ],
                    ],
                    'leave-group' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/leave-group/:group_id',
                            'constraints' => [
                                'group_id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'leaveGroup',
                            ],
                        ],
                    ],
                    'delete-group' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/delete-group/:group_id',
                            'constraints' => [
                                'group_id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'deleteGroup',
                            ],
                        ],
                    ],
                    'close' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/close/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'close',
                            ],
                        ],
                    ],
                    'clear' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/clear/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'clear',
                            ],
                        ],
                    ],
                    'upload' => [
                        'type' => Segment::class,
                        'options' => [
                            'route' => '/upload/:id',
                            'constraints' => [
                                'id' => '[A-Za-z0-9\-]+\=*',
                            ],
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\ChatController',
                                'action' => 'upload',
                            ],
                        ],
                    ],
                ],
            ],
            
            'high-performance-teams' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/high-performance-teams',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'groups' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/groups',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
                                'action' => 'index'
                            ]
                        ],'may_terminate' => true,
                        'child_routes' => [

                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:group_id',
                                    'constraints' => [
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:group_id',
                                    'constraints' => [
                                        'group_id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],'view' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/view/:group_id',
                                    'constraints' => [
                                        'group_id' => '[A-Za-z0-9\-]+\=*',
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
                                        'action' => 'index'
                                    ]
                                ],
                                    'may_terminate' => true,
                                    'child_routes' => [
                                        'objectives' => [
                                            'type' => Literal::class,
                                            'options' => [
                                                'route' => '/objectives',
                                                'defaults' => [
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
                                                    'action' => 'index'
                                                ]
                                            ],
                                            
                                            'may_terminate' => true,
                                            'child_routes' => [
                    
                                                'add' => [
                                                    'type' => Literal::class,
                                                    'options' => [
                                                        'route' => '/add',
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
                                                            'action' => 'add'
                                                        ]
                                                    ]
                                                ],
                                                'edit' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/edit/:id',
                                                        'constraints' => [
                                                            'id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
                                                            'action' => 'edit'
                                                        ]
                                                    ]
                                                ],
                                                'delete' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/delete/:id',
                                                        'constraints' => [
                                                            'id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
                                                            'action' => 'delete'
                                                        ]
                                                    ]
                                                ],
                                                'report' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/report/:id',
                                                        'constraints' => [
                                                            'id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
                                                            'action' => 'report'
                                                        ]
                                                    ]
                                                ], 
                                                'reportall' => [
                                                    'type' => Literal::class,
                                                    'options' => [
                                                        'route' => '/reportall',
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
                                                            'action' => 'reportall'
                                                        ]
                                                    ]
                                                ],
                                                 
                                                'matriz' => [
                                                    'type' => Literal::class,
                                                    'options' => [
                                                        'route' => '/matriz',
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController',
                                                            'action' => 'matriz'
                                                        ]
                                                    ]
                                                ],
                                                'goals' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/:objective_id/goals',
                                                        'constraints' => [
                                                            'objective_id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
                                                            'action' => 'index'
                                                        ]
                                                    ],
                                                
                                                    'may_terminate' => true,
                                                    'child_routes' => [
                                                        'add' => [
                                                            'type' => Literal::class,
                                                            'options' => [
                                                                'route' => '/add',
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
                                                                    'action' => 'add'
                                                                ]
                                                            ]
                                                        ],
                                                        'edit' => [
                                                            'type' => Segment::class,
                                                            'options' => [
                                                                'route' => '/edit/:id',
                                                                'constraints' => [
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
                                                                ],
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
                                                                    'action' => 'edit'
                                                                ]
                                                            ]
                                                        ],
                                                        'delete' => [
                                                            'type' => Segment::class,
                                                            'options' => [
                                                                'route' => '/delete/:id',
                                                                'constraints' => [
                                                                    'id' => '[A-Za-z0-9\-]+\=*'
                                                                ],
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController',
                                                                    'action' => 'delete'
                                                                ]
                                                            ]
                                                        ],
                                                        'task' => [
                                                            'type' => Segment::class,
                                                            'options' => [
                                                                'route' => '/:goal_id/task',
                                                                'constraints' => [
                                                                    'goal_id' => '[A-Za-z0-9\-]+\=*'
                                                                ],
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
                                                                    'action' => 'index'
                                                                ]
                                                            ],
                                                        
                                                            'may_terminate' => true,
                                                            'child_routes' => [
                                                                'add' => [
                                                                    'type' => Literal::class,
                                                                    'options' => [
                                                                        'route' => '/add',
                                                                        'defaults' => [
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
                                                                            'action' => 'add'
                                                                        ]
                                                                    ]
                                                                ],
                                                                'edit' => [
                                                                    'type' => Segment::class,
                                                                    'options' => [
                                                                        'route' => '/edit/:id',
                                                                        'constraints' => [
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
                                                                        ],
                                                                        'defaults' => [
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
                                                                            'action' => 'edit'
                                                                        ]
                                                                    ]
                                                                ],
                                                                'delete' => [
                                                                    'type' => Segment::class,
                                                                    'options' => [
                                                                        'route' => '/delete/:id',
                                                                        'constraints' => [
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
                                                                        ],
                                                                        'defaults' => [
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
                                                                            'action' => 'delete'
                                                                        ]
                                                                    ]
                                                                ],
                                                                'view' => [
                                                                    'type' => Segment::class,
                                                                    'options' => [
                                                                        'route' => '/view/:id',
                                                                        'constraints' => [
                                                                            'id' => '[A-Za-z0-9\-]+\=*'
                                                                        ],
                                                                        'defaults' => [
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController',
                                                                            'action' => 'view'
                                                                        ]
                                                                    ]
                                                                ],
                                                        ]
                                                    ],
                                                ]
                                            ],
                                            ]
                                        ]
                                        ,'feeds' => [
                                            'type' => Literal::class,
                                            'options' => [
                                                'route' => '/feeds',
                                               
                                            ],
                                            'may_terminate' => true,
                                            'child_routes' => [
                                                'timeline' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/timeline[/urgent/:urgent][/topic_id/:topic_id]',
                                                        'constraints' => [
                                                            'hptg_id'=>'[A-Za-z0-9\-]+\=*',
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
                                                            'urgent' => 'u',
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
                                                            'action' => 'timeline'
                                                        ]
                                                    ]
                                                ],
                                                'onefeed' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/onefeed[/:feed_id][/:topic_id]',
                                                        'constraints' => [
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*',
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
                                                            'action' => 'oneFeed'
                                                        ]
                                                    ]
                                                ],
                                                'delete' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/delete/:id',
                                                        'constraints' => [
                                                            'id' => '[A-Za-z0-9\-]+\=*',
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
                                                            'action' => 'delete'
                                                        ],
                                                    ]
                                                ],
                                                'comments' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/comments/:id',
                                                        'constraints' => [
                                                            'id' => '[A-Za-z0-9\-]+\=*',
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
                                                            'action' => 'comment'
                                                        ],
                                                    ],
                                                    'may_terminate' => true,
                                                    'child_routes' => [
                                                        'delete' => [
                                                            'type' => Segment::class,
                                                            'options' => [
                                                                'route' => '/delete/:comment',
                                                                'constraints' => [
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
                                                                ],
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
                                                                    'action' => 'commentDelete'
                                                                ]
                                                            ]
                                                        ],
                            
                                                        'answer' => [
                                                            'type' => Segment::class,
                                                            'options' => [
                                                                'route' => '/answer/:comment',
                                                                'constraints' => [
                                                                    'comment' => '[A-Za-z0-9\-]+\=*',
                                                                ],
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
                                                                    'action' => 'answer'
                                                                ]
                                                            ]
                                                        ],
                                                    ]
                                                ],
                                                'add' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/add[/company/:company_id][/group/:group_id][/encoding/:encoding][/type/:type][/feed/:feed][/myt_id/:myt_id][/hptg_id/:hptg_id][/topic_id/:topic_id]',
                                                        'constraints' => [
                                                            'company_id' => '[A-Za-z0-9\-]+\=*',
                                                            'group_id' => '[A-Za-z0-9\-]+\=*',
                                                            'hptg_id' => '[A-Za-z0-9\-]+\=*',
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*',
                                                            'myt_id' => '[A-Za-z0-9\-]+\=*',
                                                            'type' => 'group|company|hptg|mytq|myta',
                                                            'encoding' => 'base64'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController',
                                                            'action' => 'add'
                                                        ]
                                                    ]
                                                ],
                                            ],
                                        ],
                                        'members' => [
                                            'type' => Literal::class,
                                            'options' => [
                                                'route' => '/members',
                                                'defaults' => [
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
                                                    'action' => 'index'
                                                ]
                                            ],'may_terminate' => true,
                                            'child_routes' => [
                                                'invite' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/invite/:user_id',
                                                        'constraints' => [
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
                                                            'action' => 'invite'
                                                        ]
                                                    ]
                                                ],
                                                'edit' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/edit/:user_id',
                                                        'constraints' => [
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
                                                            'action' => 'edit'
                                                        ]
                                                    ]
                                                ],
                                                'delete' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/delete[/:user_id]',
                                                        'constraints' => [
                                                            'user_id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController',
                                                            'action' => 'delete'
                                                        ]
                                                    ]
                                                ],
                                            ]
                                        ],
                                        'urgent' => [
                                            'type' => Segment::class,
                                            'options' => [
                                                'route' => '/urgent[/:urgent]',
                                                'constraints' => [
                                                    'urgent' => 'u'
                                                ],
                                                'defaults' => [
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
                                                    'action' => 'index'
                                                ]
                                            ]
                                        ],
                                        'calendar' => [
                                            'type' => Literal::class,
                                            'options' => [
                                                'route' => '/calendar',
                                                
                                                'defaults' => [
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
                                                    'action' => 'index'
                                                ]
                                            ],'may_terminate' => true,
                                            'child_routes' => [
                                                'view' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/view[/:feed_id]',
                                                        'constraints' => [
                                                            'feed_id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController',
                                                            'action' => 'view'
                                                        ]
                                                    ]
                                                ],
                                            ]
                                        ],
                                        'foro' => [
                                            'type' => Literal::class,
                                            'options' => [
                                                'route' => '/foro',
                                                'defaults' => [
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
                                                    'action' => 'index'
                                                ]
                                            ],
                                            'may_terminate' => true,
                                            'child_routes' => [
                                                'view' => [
                                                    'type' => Literal::class,
                                                    'options' => [
                                                        'route' => '/view',
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController',
                                                            'action' => 'view'
                                                        ]
                                                    ]
                                                ],
                                                'categories' => [
                                                    'type' => Literal::class,
                                                    'options' => [
                                                        'route' => '/categories',
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
                                                            'action' => 'index'
                                                        ]
                                                    ],
                                                    'may_terminate' => true,
                                                    'child_routes' => [
                                                        'view' => [
                                                            'type' => Literal::class,
                                                            'options' => [
                                                                'route' => '/view',
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
                                                                    'action' => 'view'
                                                                ]
                                                            ]
                                                        ],
                                                        'add' => [
                                                            'type' => Literal::class,
                                                            'options' => [
                                                                'route' => '/add',
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
                                                                    'action' => 'add'
                                                                ]
                                                            ]
                                                        ],
                                                        'edit' => [
                                                            'type' => Segment::class,
                                                            'options' => [
                                                                'route' => '/edit/:category_id',
                                                                'constraints' => [
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
                                                                ],
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
                                                                    'action' => 'edit'
                                                                ]
                                                            ]
                                                        ],
                                                        'delete' => [
                                                            'type' => Segment::class,
                                                            'options' => [
                                                                'route' => '/delete/:category_id',
                                                                'constraints' => [
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
                                                                ],
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController',
                                                                    'action' => 'delete'
                                                                ]
                                                            ]
                                                        ],
                                                        'articles' => [
                                                            'type' => Segment::class,
                                                            'options' => [
                                                                'route' => '/:category_id/articles',
                                                                'constraints' => [
                                                                    'category_id' => '[A-Za-z0-9\-]+\=*'
                                                                ],
                                                                'defaults' => [
                                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
                                                                    'action' => 'index'
                                                                ]
                                                            ],
                                                            'may_terminate' => true,
                                                            'child_routes' => [
                                                                'add' => [
                                                                    'type' => Literal::class,
                                                                    'options' => [
                                                                        'route' => '/add',
                                                                        'defaults' => [
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
                                                                            'action' => 'add'
                                                                        ]
                                                                    ]
                                                                ],
                                                                'edit' => [
                                                                    'type' => Segment::class,
                                                                    'options' => [
                                                                        'route' => '/edit/:article_id',
                                                                        'constraints' => [
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
                                                                        ],
                                                                        'defaults' => [
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
                                                                            'action' => 'edit'
                                                                        ]
                                                                    ]
                                                                ],
                                                                
                                                                'delete' => [
                                                                    'type' => Segment::class,
                                                                    'options' => [
                                                                        'route' => '/delete/:article_id',
                                                                        'constraints' => [
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
                                                                        ],
                                                                        'defaults' => [
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController',
                                                                            'action' => 'delete'
                                                                        ]
                                                                    ]
                                                                ],
                                                                'view' => [
                                                                    'type' => Segment::class,
                                                                    'options' => [
                                                                        'route' => '/view/:article_id',
                                                                        'constraints' => [
                                                                            'articles_id' => '[A-Za-z0-9\-]+\=*'
                                                                        ],
                                                                        'defaults' => [
                                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController',
                                                                            'action' => 'index'
                                                                        ]
                                                                    ]
                                                                ],
                                                            ]
                                                        ],
                                                    ],
                                                ],
                                            ]
                                        ],
                                        'topic' => [
                                            'type' => Literal::class,
                                            'options' => [
                                                'route' => '/topic',
                                                'defaults' => [
                                                    'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
                                                    'action' => 'index'
                                                ]
                                            ],'may_terminate' => true,
                                            'child_routes' => [
                                                'add' => [
                                                    'type' => Literal::class,
                                                    'options' => [
                                                        'route' => '/add',
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
                                                            'action' => 'add'
                                                        ]
                                                    ]
                                                ],
                                                'edit' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/edit/:topic_id',
                                                        'constraints' => [
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
                                                            'action' => 'edit'
                                                        ]
                                                    ]
                                                ],
                                                'view' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/view[/:topic_id]',
                                                        'constraints' => [
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController',
                                                            'action' => 'index'
                                                        ]
                                                    ]
                                                ],
                                                
                                                'delete' => [
                                                    'type' => Segment::class,
                                                    'options' => [
                                                        'route' => '/delete/:topic_id',
                                                        'constraints' => [
                                                            'topic_id' => '[A-Za-z0-9\-]+\=*'
                                                        ],
                                                        'defaults' => [
                                                            'controller' => '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController',
                                                            'action' => 'delete'
                                                        ]
                                                    ]
                                                ]
                                            ],
                                        ],

                                    ],

                            ],
                        ]
                    ],
                ]
            ],
            

            'my-trainer' => [
                'type' => Literal::class,
                'options' => [
                    'route' => '/my-trainer',
                    'defaults' => [
                        'controller' => '\LeadersLinked\Controller\UnknownController',
                        'action' => 'index'
                    ]
                ],
                'may_terminate' => true,
                'child_routes' => [
                    'category' => [
                        'type' => Literal::class,
                        'options' => [
                            'route' => '/category',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MyTrainerCategoriesController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ]
                        ]
                    ],
                    'question' => [
                        'type' => segment::class,
                        'options' => [
                            'route' => '/question',
                            'defaults' => [
                                'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
                                'action' => 'index'
                            ]
                        ],
                        'may_terminate' => true,
                        'child_routes' => [
                            'add' => [
                                'type' => Literal::class,
                                'options' => [
                                    'route' => '/add',
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
                                        'action' => 'add'
                                    ]
                                ]
                            ],
                            'edit' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/edit/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
                                        'action' => 'edit'
                                    ]
                                ]
                            ],
                            'delete' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/delete/:id',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionController',
                                        'action' => 'delete'
                                    ]
                                ]
                            ],
                            'view' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/:id/view',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MyTrainerQuestionViewController',
                                        'action' => 'index'
                                    ]
                                ]
                            ],
                            'answer' => [
                                'type' => Segment::class,
                                'options' => [
                                    'route' => '/:id/answer',
                                    'constraints' => [
                                        'id' => '[A-Za-z0-9\-]+\=*'
                                    ],
                                    'defaults' => [
                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                        'action' => 'index'
                                    ]
                                ],
                                'may_terminate' => true,
                                'child_routes' => [
                                    'add' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/add[/:id]',
                                            'constraints' => [
                                                'id' => '[A-Za-z0-9\-]+\=*'
                                            ],
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                                'action' => 'add'
                                            ]
                                        ]
                                    ],
                                    'edit' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/edit',
                                           
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                                'action' => 'edit'
                                            ]
                                        ]
                                    ],
                                    'delete' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/delete',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                                'action' => 'delete'
                                            ]
                                        ]
                                    ],
                                    'feed' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/feed',
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                                'action' => 'feed'
                                            ],
                                        ],
                                    ],
                                    'timeline' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/timeline',                                           
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                                'action' => 'timeline'
                                            ],
                                        ],
                                    ],
                                    'comments' => [
                                        'type' => Segment::class,
                                        'options' => [
                                            'route' => '/comments',
                                            
                                            'defaults' => [
                                                'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                                'action' => 'comment'
                                            ],
                                        ],
                                        'may_terminate' => true,
                                        'child_routes' => [
                                            'delete' => [
                                                'type' => Segment::class,
                                                'options' => [
                                                    'route' => '/delete/:comment',
                                                    'constraints' => [
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
                                                    ],
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                                        'action' => 'commentDelete'
                                                    ]
                                                ]
                                            ],
                                            'answer' => [
                                                'type' => Segment::class,
                                                'options' => [
                                                    'route' => '/answer/:comment',
                                                    'constraints' => [
                                                        'comment' => '[A-Za-z0-9\-]+\=*',
                                                    ],
                                                    'defaults' => [
                                                        'controller' => '\LeadersLinked\Controller\MyTrainerAnswerController',
                                                        'action' => 'answer'
                                                    ]
                                                ]
                                            ],
                                        ]
                                    ],
                                ],
                            ],
                        ],
                    ],
                ]
            ],
            
        ]
    ],
    'controllers' => [
        'factories' => [
            \LeadersLinked\Controller\AuthController::class => \LeadersLinked\Factory\Controller\AuthControllerFactory::class,
            \LeadersLinked\Controller\FeedController::class => \LeadersLinked\Factory\Controller\FeedControllerFactory::class,
            \LeadersLinked\Controller\FollowerController::class => \LeadersLinked\Factory\Controller\FollowerControllerFactory::class,
            \LeadersLinked\Controller\JobController::class => \LeadersLinked\Factory\Controller\JobControllerFactory::class,
            \LeadersLinked\Controller\RecruitmentSelectionController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionFactory::class,
            \LeadersLinked\Controller\RecruitmentSelectionInterviewController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFactory::class,
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFormFactory::class,
            \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionInterviewFileControllerFactory::class,
            \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionVacancyFactory::class,
            \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class => \LeadersLinked\Factory\Controller\RecruitmentSelectionCandidateFactory::class,
            \LeadersLinked\Controller\ProfileController::class => \LeadersLinked\Factory\Controller\ProfileControllerFactory::class,
            \LeadersLinked\Controller\CompanyController::class => \LeadersLinked\Factory\Controller\CompanyControllerFactory::class,
            \LeadersLinked\Controller\CompanySizeController::class => \LeadersLinked\Factory\Controller\CompanySizeControllerFactory::class,
            \LeadersLinked\Controller\BehaviorsController::class => \LeadersLinked\Factory\Controller\BehaviorsControllerFactory::class,
            \LeadersLinked\Controller\CompetencyTypeController::class => \LeadersLinked\Factory\Controller\CompetencyTypeControllerFactory::class,
            \LeadersLinked\Controller\CompetencyController::class => \LeadersLinked\Factory\Controller\CompetencyControllerFactory::class,
            \LeadersLinked\Controller\DegreeController::class => \LeadersLinked\Factory\Controller\DegreeControllerFactory::class,
            \LeadersLinked\Controller\EmailTemplateController::class => \LeadersLinked\Factory\Controller\EmailTemplateControllerFactory::class,
            \LeadersLinked\Controller\PushTemplateController::class => \LeadersLinked\Factory\Controller\PushTemplateControllerFactory::class,
            \LeadersLinked\Controller\GroupTypeController::class => \LeadersLinked\Factory\Controller\GroupTypeControllerFactory::class,
            \LeadersLinked\Controller\IndustryController::class => \LeadersLinked\Factory\Controller\IndustryControllerFactory::class,
            \LeadersLinked\Controller\JobCategoryController::class => \LeadersLinked\Factory\Controller\JobCategoryControllerFactory::class,
            \LeadersLinked\Controller\JobDescriptionController::class => \LeadersLinked\Factory\Controller\JobDescriptionControllerFactory::class,
            \LeadersLinked\Controller\PageController::class => \LeadersLinked\Factory\Controller\PageControllerFactory::class,
            \LeadersLinked\Controller\PositionController::class => \LeadersLinked\Factory\Controller\PositionControllerFactory::class,
            \LeadersLinked\Controller\PostController::class => \LeadersLinked\Factory\Controller\PostControllerFactory::class,
            \LeadersLinked\Controller\SkillController::class => \LeadersLinked\Factory\Controller\SkillControllerFactory::class,
            \LeadersLinked\Controller\UserController::class => \LeadersLinked\Factory\Controller\UserControllerFactory::class,
            \LeadersLinked\Controller\DashboardController::class => \LeadersLinked\Factory\Controller\DashboardControllerFactory::class,
            \LeadersLinked\Controller\SelfEvaluationController::class => \LeadersLinked\Factory\Controller\SelfEvaluationControllerFactory::class,
            \LeadersLinked\Controller\SelfEvaluationFormController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormControllerFactory::class,
            \LeadersLinked\Controller\SelfEvaluationFormUserController::class => \LeadersLinked\Factory\Controller\SelfEvaluationFormUserControllerFactory::class,
            \LeadersLinked\Controller\SelfEvaluationReviewController::class => \LeadersLinked\Factory\Controller\SelfEvaluationReviewControllerFactory::class,
            \LeadersLinked\Controller\SurveyController::class => \LeadersLinked\Factory\Controller\SurveyControllerFactory::class,
            \LeadersLinked\Controller\SurveyFormController::class => \LeadersLinked\Factory\Controller\SurveyFormControllerFactory::class,
            \LeadersLinked\Controller\SurveyReportController::class => \LeadersLinked\Factory\Controller\SurveyReportControllerFactory::class,
            \LeadersLinked\Controller\SurveyTestController::class => \LeadersLinked\Factory\Controller\SurveyTestControllerFactory::class,
            \LeadersLinked\Controller\OrganizationalClimateController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateControllerFactory::class,
            \LeadersLinked\Controller\OrganizationalClimateFormController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateFormControllerFactory::class,
            \LeadersLinked\Controller\OrganizationalClimateReportController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateReportControllerFactory::class,
            \LeadersLinked\Controller\OrganizationalClimateTestController::class => \LeadersLinked\Factory\Controller\OrganizationalClimateTestControllerFactory::class,
            \LeadersLinked\Controller\PerformanceEvaluationFormController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationFormControllerFactory::class,
            \LeadersLinked\Controller\MyTrainerCategoriesController::class => \LeadersLinked\Factory\Controller\MyTrainerCategoriesControllerFactory::class,
            \LeadersLinked\Controller\MyTrainerQuestionViewController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionViewControllerFactory::class,
            \LeadersLinked\Controller\MyTrainerQuestionController::class => \LeadersLinked\Factory\Controller\MyTrainerQuestionControllerFactory::class,
            \LeadersLinked\Controller\MyTrainerAnswerController::class => \LeadersLinked\Factory\Controller\MyTrainerAnswerControllerFactory::class,
            \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class => \LeadersLinked\Factory\Controller\PerformanceEvaluationEvaluationControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningController::class => \LeadersLinked\Factory\Controller\MicrolearningControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningQuizController::class => \LeadersLinked\Factory\Controller\MicrolearningQuizControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningQuestionController::class => \LeadersLinked\Factory\Controller\MicrolearningQuestionControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningAnswerController::class => \LeadersLinked\Factory\Controller\MicrolearningAnswerControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningTopicController::class => \LeadersLinked\Factory\Controller\MicrolearningTopicControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningCapsuleController::class => \LeadersLinked\Factory\Controller\MicrolearningCapsuleControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningSlideController::class => \LeadersLinked\Factory\Controller\MicrolearningSlideControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningAccessForStudentsControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningStudentsController::class => \LeadersLinked\Factory\Controller\MicrolearningStudentsControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningReportsController::class => \LeadersLinked\Factory\Controller\MicrolearningReportsControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserCompanyControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserFunctionControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserGroupControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserInstitutionControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserPartnerControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserProgramControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserSectorControllerFactory::class,
            \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class => \LeadersLinked\Factory\Controller\MicrolearningExtendUserStudentTypeControllerFactory::class,
            \LeadersLinked\Controller\StorageController::class => \LeadersLinked\Factory\Controller\StorageControllerFactory::class,
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsControllerFactory::class,
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsObjectivesControllerFactory::class,
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsGoalsControllerFactory::class,
            \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class => \LeadersLinked\Factory\Controller\PlanningObjectivesAndGoalsTaskControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewCalendarControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoCategoriesControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewObjectivesControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewGoalsControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTaskControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewFeedControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsViewTopicControllerFactory::class,
            \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class => \LeadersLinked\Factory\Controller\HighPerformanceTeamsGroupsMembersControllerFactory::class,
            \LeadersLinked\Controller\ChatController::class => \LeadersLinked\Factory\Controller\ChatControllerFactory::class,
            \LeadersLinked\Controller\CommunicationController::class => \LeadersLinked\Factory\Controller\CommunicationControllerFactory::class,
            \LeadersLinked\Controller\CommunicationCompanyController::class => \LeadersLinked\Factory\Controller\CommunicationCompanyControllerFactory::class,
            
            
            
            \LeadersLinked\Controller\UnknownController::class => \LeadersLinked\Factory\Controller\UnknownControllerFactory::class,
            \LeadersLinked\Controller\TestController::class => \LeadersLinked\Factory\Controller\TestControllerFactory::class,
        ],
        'aliases' => [
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
            '\LeadersLinked\Controller\FeedController' => \LeadersLinked\Controller\FeedController::class,
            '\LeadersLinked\Controller\JobController' => \LeadersLinked\Controller\JobController::class,
            '\LeadersLinked\Controller\RecruitmentSelectionController' => \LeadersLinked\Controller\RecruitmentSelectionController::class,
            '\LeadersLinked\Controller\RecruitmentSelectionVacancyController' => \LeadersLinked\Controller\RecruitmentSelectionVacancyController::class,
            '\LeadersLinked\Controller\RecruitmentSelectionCandidateController' => \LeadersLinked\Controller\RecruitmentSelectionCandidateController::class,
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFormController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFormController::class,
            '\LeadersLinked\Controller\RecruitmentSelectionInterviewFileController' => \LeadersLinked\Controller\RecruitmentSelectionInterviewFileController::class,
            '\LeadersLinked\Controller\ProfileController' => \LeadersLinked\Controller\ProfileController::class,
            '\LeadersLinked\Controller\CompanyController' => \LeadersLinked\Controller\CompanyController::class,
            '\LeadersLinked\Controller\CompanySizeController' => \LeadersLinked\Controller\CompanySizeController::class,
            '\LeadersLinked\Controller\CompetencyTypeController' => \LeadersLinked\Controller\CompetencyTypeController::class,
            '\LeadersLinked\Controller\BehaviorsController' => \LeadersLinked\Controller\BehaviorsController::class,
            '\LeadersLinked\Controller\CompetencyController' => \LeadersLinked\Controller\CompetencyController::class,
            '\LeadersLinked\Controller\DegreeController' => \LeadersLinked\Controller\DegreeController::class,
            '\LeadersLinked\Controller\EmailTemplateController' => \LeadersLinked\Controller\EmailTemplateController::class,
            '\LeadersLinked\Controller\PushTemplateController' => \LeadersLinked\Controller\PushTemplateController::class,
            '\LeadersLinked\Controller\GroupTypeController' => \LeadersLinked\Controller\GroupTypeController::class,
            '\LeadersLinked\Controller\IndustryController' => \LeadersLinked\Controller\IndustryController::class,
            '\LeadersLinked\Controller\JobCategoryController' => \LeadersLinked\Controller\JobCategoryController::class,
            '\LeadersLinked\Controller\JobDescriptionController' => \LeadersLinked\Controller\JobDescriptionController::class,
            '\LeadersLinked\Controller\PageController' => \LeadersLinked\Controller\PageController::class,
            '\LeadersLinked\Controller\PositionController' => \LeadersLinked\Controller\PositionController::class,
            '\LeadersLinked\Controller\PostController' => \LeadersLinked\Controller\PostController::class,
            '\LeadersLinked\Controller\SkillController' => \LeadersLinked\Controller\SkillController::class,
            '\LeadersLinked\Controller\UserController' => \LeadersLinked\Controller\UserController::class,
            '\LeadersLinked\Controller\DashboardController' => \LeadersLinked\Controller\DashboardController::class,
            '\LeadersLinked\Controller\SelfEvaluationController' => \LeadersLinked\Controller\SelfEvaluationController::class,
            '\LeadersLinked\Controller\SelfEvaluationFormController' => \LeadersLinked\Controller\SelfEvaluationFormController::class,
            '\LeadersLinked\Controller\SelfEvaluationFormUserController' => \LeadersLinked\Controller\SelfEvaluationFormUserController::class,
            '\LeadersLinked\Controller\SelfEvaluationReviewController' => \LeadersLinked\Controller\SelfEvaluationReviewController::class,
            '\LeadersLinked\Controller\SurveyController' => \LeadersLinked\Controller\SurveyController::class,
            '\LeadersLinked\Controller\SurveyFormController' => \LeadersLinked\Controller\SurveyFormController::class,
            '\LeadersLinked\Controller\SurveyReportController' => \LeadersLinked\Controller\SurveyReportController::class,
            '\LeadersLinked\Controller\SurveyTestController' => \LeadersLinked\Controller\SurveyTestController::class,
            '\LeadersLinked\Controller\OrganizationalClimateController' => \LeadersLinked\Controller\OrganizationalClimateController::class,
            '\LeadersLinked\Controller\OrganizationalClimateFormController' => \LeadersLinked\Controller\OrganizationalClimateFormController::class,
            '\LeadersLinked\Controller\OrganizationalClimateReportController' => \LeadersLinked\Controller\OrganizationalClimateReportController::class,
            '\LeadersLinked\Controller\OrganizationalClimateTestController' => \LeadersLinked\Controller\OrganizationalClimateTestController::class,
            '\LeadersLinked\Controller\PerformanceEvaluationFormController' => \LeadersLinked\Controller\PerformanceEvaluationFormController::class,
            '\LeadersLinked\Controller\PerformanceEvaluationEvaluationController' => \LeadersLinked\Controller\PerformanceEvaluationEvaluationController::class,
            '\LeadersLinked\Controller\MicrolearningController' => \LeadersLinked\Controller\MicrolearningController::class,
            '\LeadersLinked\Controller\MicrolearningQuizController' => \LeadersLinked\Controller\MicrolearningQuizController::class,
            '\LeadersLinked\Controller\MicrolearningQuestionController' => \LeadersLinked\Controller\MicrolearningQuestionController::class,
            '\LeadersLinked\Controller\MicrolearningAnswerController' => \LeadersLinked\Controller\MicrolearningAnswerController::class,
            '\LeadersLinked\Controller\MicrolearningTopicController' => \LeadersLinked\Controller\MicrolearningTopicController::class,
            '\LeadersLinked\Controller\MicrolearningCapsuleController' => \LeadersLinked\Controller\MicrolearningCapsuleController::class,
            '\LeadersLinked\Controller\MicrolearningSlideController' => \LeadersLinked\Controller\MicrolearningSlideController::class,
            '\LeadersLinked\Controller\MicrolearningStudentsController' => \LeadersLinked\Controller\MicrolearningStudentsController::class,
            '\LeadersLinked\Controller\MicrolearningAccessForStudentsController' => \LeadersLinked\Controller\MicrolearningAccessForStudentsController::class,
            '\LeadersLinked\Controller\MicrolearningReportsController' => \LeadersLinked\Controller\MicrolearningReportsController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserCompanyController' => \LeadersLinked\Controller\MicrolearningExtendUserCompanyController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserFunctionController' => \LeadersLinked\Controller\MicrolearningExtendUserFunctionController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserGroupController' => \LeadersLinked\Controller\MicrolearningExtendUserGroupController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserInstitutionController' => \LeadersLinked\Controller\MicrolearningExtendUserInstitutionController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserPartnerController' => \LeadersLinked\Controller\MicrolearningExtendUserPartnerController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController' => \LeadersLinked\Controller\MicrolearningExtendUserStudentTypeController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserProgramController' => \LeadersLinked\Controller\MicrolearningExtendUserProgramController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
            '\LeadersLinked\Controller\MicrolearningExtendUserSectorController' => \LeadersLinked\Controller\MicrolearningExtendUserSectorController::class,
            '\LeadersLinked\Controller\MyTrainerCategoriesController' => \LeadersLinked\Controller\MyTrainerCategoriesController::class,
            '\LeadersLinked\Controller\MyTrainerQuestionViewController' => \LeadersLinked\Controller\MyTrainerQuestionViewController::class,
            '\LeadersLinked\Controller\MyTrainerQuestionController' => \LeadersLinked\Controller\MyTrainerQuestionController::class,
            '\LeadersLinked\Controller\MyTrainerAnswerController' => \LeadersLinked\Controller\MyTrainerAnswerController::class,
            '\LeadersLinked\Controller\StorageController' => \LeadersLinked\Controller\StorageController::class,
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsController::class,
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsObjectivesController::class,
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsTaskController::class,
            '\LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController' => \LeadersLinked\Controller\PlanningObjectivesAndGoalsGoalsController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsController' => \LeadersLinked\Controller\HighPerformanceTeamsController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewObjectivesController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewGoalsController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTaskController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewFeedController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewTopicController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewCalendarController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoCategoriesController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsViewForoArticlesViewController::class,
            '\LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController' => \LeadersLinked\Controller\HighPerformanceTeamsGroupsMembersController::class,
            '\LeadersLinked\Controller\ChatController' => \LeadersLinked\Controller\ChatController::class,
            '\LeadersLinked\Controller\CommunicationController' => \LeadersLinked\Controller\CommunicationController::class,
            '\LeadersLinked\Controller\CommunicationCompanyController' => \LeadersLinked\Controller\CommunicationCompanyController::class,

            '\LeadersLinked\Controller\UnknownController' => \LeadersLinked\Controller\UnknownController::class,
            '\LeadersLinked\Controller\TestController' => \LeadersLinked\Controller\TestController::class,
        ]
    ],
    'laminas-cli' => [
        'commands' => [
        ]
    ],
    'service_manager' => [
        'abstract_factories' => [
            \Laminas\Db\Adapter\AdapterAbstractServiceFactory::class
        ],
        'factories' => [
            'RenderingStrategy' => function ($container) {
                $translator = $container->get('MvcTranslator');
                return new \LeadersLinked\View\RenderingStrategy($translator);
            },
            'menuNavigation' => \LeadersLinked\Navigation\MenuNavigation::class,
            'footerNavigation' => \LeadersLinked\Navigation\FooterNavigation::class,
        ],
        'aliases' => [// 'leaders-linked-storage' => \LeadersLinked\Service\StorageService::class
        ]
    ],
    'view_helpers' => [
        'factories' => [
            \LeadersLinked\Helper\ChatHelper::class => \LeadersLinked\Factory\Helper\ChatHelperFactory::class,
            \LeadersLinked\Helper\CurrentUserHelper::class => \LeadersLinked\Factory\Helper\CurrentUserHelperFactory::class,

        ],
        'invokables' => [
            'chatHelper' => \LeadersLinked\Helper\ChatHelper::class,
            'menuHelper' => \LeadersLinked\Helper\MenuHelper::class,
        ],
        'aliases' => [
            
            'currentUserHelper' => \LeadersLinked\Helper\CurrentUserHelper::class,
            
        ]
    ],
    'controller_plugins' => [
        'invokables' => [],
        'factories' => [
            \LeadersLinked\Plugin\CurrentUserPlugin::class => \LeadersLinked\Factory\Plugin\CurrentUserPluginFactory::class
        ],
        'aliases' => [
            'currentUserPlugin' => \LeadersLinked\Plugin\CurrentUserPlugin::class
        ]
    ],
    'view_manager' => [
        'display_not_found_reason' => true,
        'display_exceptions' => true,
        'doctype' => 'HTML5',
        'not_found_template' => 'error/404',
        'exception_template' => 'error/index',
        'template_map' => [
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
            'error/404' => __DIR__ . '/../view/error/404.phtml',
            'error/index' => __DIR__ . '/../view/error/index.phtml'
        ],
        'template_path_stack' => [
            __DIR__ . '/../view'
        ],
        'strategies' => [
            'ViewJsonStrategy',
            'RenderingStrategy'
        ]
    ]
];