1. Go to this page and download the library: Download monken/ci4-route-attributes library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
monken / ci4-route-attributes example snippets
namespace App\Controllers;
use monken\Ci4RouteAttributes\Route;
class Ci4Controller extends BaseController
{
#[Route(path: 'attr/route', methods: ["get"])]
public function hello()
{
return "PHP8Attributes";
}
}
namespace Config;
use CodeIgniter\Config\BaseConfig;
class RouteAttributes extends BaseConfig
{
/**
* Routes are automatically registered only if this is set to `true`
*
* @var boolean
*/
public bool $enabled = true;
/**
* autoscan namespaces
*
* @var array<string>
*/
public array $controllerNamespaces = [
"App\Controllers"
];
/**
* Generate production environment route definition file path
*
* @var string
*/
public string $routeDefinitionFilePath = WRITEPATH . 'cache';
/**
* Whether to use pre-generated route definition files in production.
* Note that when this option is set to `true`, controller files will not be automatically
* scanned in production environment. You must use `route-attr:make` command to generate
* route definition files to improve performance in production environment.
*
* @var boolean
*/
public bool $productionUseDefinitionFile = true;
}
namespace App\Controllers;
use CodeIgniter\RESTful\ResourcePresenter;
use monken\Ci4RouteAttributes\RouteRESTful;
#[RouteRESTful(name: 'user', type: 'presenter')]
class User extends ResourcePresenter
{
//...
}
namespace App\Controllers;
use monken\Ci4RouteAttributes\Route;
use monken\Ci4RouteAttributes\RouteGroup;
#[RouteGroup(name: '/route/testgroup', options: ['filter' => 'auth'])]
class Group extends BaseController
{
#[Route(path: 'getindex', methods: ['get'])]
public function index()
{
return "hi";
}
#[Route(path: 'get/something', methods: ['get'])]
public function somefunction()
{
return "something";
}
}
namespace App\Controllers;
use monken\Ci4RouteAttributes\Route;
#[RouteEnvironment(type: "development")]
class EnvRoute extends BaseController
{
#[Route(path:'dev/tool', methods:['cli'])]
public function devToolMethod()
{
return "tool msg";
}
#[Route(path:'dev/page', methods:['get'])]
public function devPageMethod()
{
return "page msg";
}
$routes->environment('development', function ($routes) {
$routes->cli('dev/tool', 'App\Controllers\EnvRoute::devToolMethod');
$routes->get('dev/page', 'App\Controllers\EnvRoute::devPageMethod');
});
namespace App\Controllers;
use monken\Ci4RouteAttributes\Route;
use monken\Ci4RouteAttributes\RouteGroup;
#[RouteEnvironment(type: "development")]
#[RouteGroup('/dev')]
class EnvRoute extends BaseController
{
#[Route(path:'tool', methods:['cli'])]
public function devToolMethod()
{
return "tool msg";
}
#[Route(path:'page', methods:['get'])]
public function devPageMethod()
{
return "page msg";
}
$routes->environment('development', function ($routes) {
$routes->group(
'/dev',
function ($routes) {
$routes->cli('tool', 'App\Controllers\EnvRoute::devToolMethod');
$routes->get('page', 'App\Controllers\EnvRoute::devPageMethod');
}
);
});
php spark route-attr:init
php spark route-attr:make
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.