YII分模块加载路由的实现方法

拆了之后项目配置结构如下

YII分模块加载路由的实现方法

新增了一个modules.php来管理模块的加载

调整之前 web.php的模块加载配置如下

  'modules' => [    'setup' => [      'class' => 'appcomponentsmodulessetupModule',    ],    'shareorder' => [      'class' => 'appcomponentsmodulesshareorderModule',    ],  ]

调整之后 web.php模块配置如下

'modules' => require (__DIR__).'/modules.php',

modules.php里面配置如下

  return [    'setup' => [      'class' => 'appcomponentsmodulessetupModule',    ],    'shareorder' => [      'class' => 'appcomponentsmodulesshareorderModule',    ],  ];

然后修改rules.php

  $default = [      ];  $modules = require __DIR__.'./modules.php';  $roles = [];  foreach ($modules as $module)  {    $class = new ReflectionClass($module['class']);    $filePath = $class->getFileName();    $filePath = str_replace('Module','rules',$filePath);    if(file_exists($filePath))    {      $role = require $filePath;      $roles = array_merge($roles,$role);    }  }  return array_merge($roles,$default);。

利用反射找到每个模块的真实路径,然后加载当前模块下的rules.php文件

每个模块的目录结构

YII分模块加载路由的实现方法

其中Modules.php是配置当前模块,加载命名空间等。rules.php为当前模块的下的路由配置。

© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发

请登录后发表评论