mikbox74/yii2-autorouter

This component allows modules to create rules for UrlManager by method

Installs: 28

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.1 2017-08-24 14:15 UTC

This package is not auto-updated.

Last update: 2024-09-24 17:59:41 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',
     ];
 }