phphleb/radjax

Ajax- and API-router for Micro-Framework HLEB


Keywords
api, router, ajax
License
MIT

Documentation

Radjax (fast Ajax- and API-router)

The Radjax is not included in the original configuration of the framework HLEB, so it must be copied to the folder with the vendor/phphleb libraries from the github.com/phphleb/radjax repository or installed using Composer:

$ composer require phphleb/radjax

Connection to the project in /routes/ajax.php or /routes/api.php


Radjax\Route::get("/info/", ["get"], "App\Controllers\TestController@index", ["protected"=>false, "autoloader" => true]);

// and advanced customization

Radjax\Route::get("/weather/{year}/{month}/{day}/{hour?}/", ["get","post"], "App\Controllers\TestController@weather", ["protected"=>true, "autoloader" => false, "arguments"=>["list"], "session_saved" => false]);