26 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use kernel\App;
 | 
						|
use kernel\CgRouteCollector;
 | 
						|
use Phroute\Phroute\RouteCollector;
 | 
						|
 | 
						|
App::$collector->group(["prefix" => "admin"], function (CgRouteCollector $router) {
 | 
						|
    App::$collector->group(["before" => "auth"], function (RouteCollector $router) {
 | 
						|
        App::$collector->group(["prefix" => "gestalt_profile"], function (CGRouteCollector $router) {
 | 
						|
            App::$collector->get('/', [\app\modules\gestalt_profile\controllers\Gestalt_profileController::class, 'actionIndex']);
 | 
						|
            App::$collector->get('/page/{page_number}', [\app\modules\gestalt_profile\controllers\Gestalt_profileController::class, 'actionIndex']);
 | 
						|
            App::$collector->get('/create', [\app\modules\gestalt_profile\controllers\Gestalt_profileController::class, 'actionCreate']);
 | 
						|
            App::$collector->post("/", [\app\modules\gestalt_profile\controllers\Gestalt_profileController::class, 'actionAdd']);
 | 
						|
            App::$collector->get('/view/{id}', [\app\modules\gestalt_profile\controllers\Gestalt_profileController::class, 'actionView']);
 | 
						|
            App::$collector->any('/update/{id}', [\app\modules\gestalt_profile\controllers\Gestalt_profileController::class, 'actionUpdate']);
 | 
						|
            App::$collector->any("/edit/{id}", [\app\modules\gestalt_profile\controllers\Gestalt_profileController::class, 'actionEdit']);
 | 
						|
            App::$collector->get('/delete/{id}', [\app\modules\gestalt_profile\controllers\Gestalt_profileController::class, 'actionDelete']);
 | 
						|
        });
 | 
						|
    });
 | 
						|
});
 | 
						|
App::$collector->group(["prefix" => "api"], function (CgRouteCollector $router){
 | 
						|
    App::$collector->group(['before' => 'bearer'], function (CgRouteCollector $router){
 | 
						|
        $router->rest("gestalt_profile", [\kernel\app_modules\gestalt_profile\controllers\GestaltProfileRestController::class]);
 | 
						|
    });
 | 
						|
});
 |