mikbox74 / yii2-autorouter
This component allows modules to create rules for UrlManager by method
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
This package is not auto-updated.
Last update: 2025-05-06 21:02:27 UTC
README
This component allows modules to create rules for UrlManager by method.
Installing:
composer require mikbox74/yii2-autorouter
Step 1: add the component in bootstrap list of your application (main.php, main-local.php) like here:
return [ // ... 'bootstrap' => [ [ 'class' => \mikbox74\Autorouter\AutorouterComponent::class, ], //... ], ];
Step 2: make your module class to implement \mikbox74\Autorouter\AutorouterInterface then add a method getUrlRules() and make it returning a rule array as if you configure the module's rules in main.php or main-local.php, like in the example:
public static function getUrlRules() { return [ [ 'class' => 'yii\rest\UrlRule', 'controller' => [ 'mymodule/controller', ], ], 'GET mymodule/controller/<id:\d+>' => 'mymodule/controller/view', 'POST mymodule/controller' => 'mymodule/controller/create', 'PUT mymodule/controller/<id:\d+>' => 'mymodule/controller/update', 'DELETE mymodule/controller/<id:\d+>' => 'mymodule/controller/delete', ]; }