CakePHP 3 中动态加载插件配置文件

问题描述 投票:0回答:1

问题:如何从插件/配置目录加载配置文件?

演示项目:https://github.com/CakePHPKitchen/CakeDC-Users-Permissions-Example

我正在使用 CakeDC/users 插件,它有一个 requests.php 文件,可以从中加载 RBAC 权限。据我所知,它要么加载用户插件的配置文件夹中的默认权限文件,要么加载app/config 文件夹中的permissions.php 文件。

现在,对于我的应用程序框架,我在 app/config/permissions.php 中有很多权限,但是,我不想修改该文件,因为我将从上游存储库中进行 git pull,我想避免冲突.

所以我想做的是,在应用程序骨架引导程序中

我愿意

foreach(Plugin::loaded() as $plugin) {

     $path = Plugin::path($plugin) . 'config/permissions.php';

     if(file_exists($path)) {

        Configure::load($path, 'default', true);
     }
}

但是我收到以下错误......

 Error: The application is trying to load a file from the /Users/jlroberts/Projects/JeffreyLRobertsCom/CakePHPKitchen/PluginDemos/plugins/SharpAgent/config/permissions plugin. 

 Make sure your plugin /Users/jlroberts/Projects/JeffreyLRobertsCom/CakePHPKitchen/PluginDemos/plugins/SharpAgent/config/permissions is in the /Users/jlroberts/Projects/JeffreyLRobertsCom/CakePHPKitchen/PluginDemos/plugins/ directory and was loaded.

关于如何从 Plugin/config 目录加载 Permissions.php 文件有什么想法吗?

php cakephp cakephp-3.x cakedc cakephp-3.4
1个回答
3
投票

编辑:您可以像现在一样从插件加载permissions.php文件,但更改permissions.php的内容以保留配置中定义的现有权限,例如:

配置/权限.php

$permissions = [
    // add your app permissions here
    [
        // ...
    ],
];

// there are more permissions in this config key, defined across your plugins
$morePermissions = \Cake\Core\Configure::read('MyPermissions');
$allPerms = array_merge($permissions, $morePermissions);

return ['CakeDC/Auth.permissions' => $allPerms];

然后在每个插件中你可以有:

您的插件/config/bootstrap.php

$permissions = \Cake\Core\Configure::read('MyPermissions');
$someMorePermissions = [
    [
        // permissions injected into the app from this plugin
    ]
];

$permissions = array_merge((array)$permissions, $someMorePermissions);
\Cake\Core\Configure::write('MyPermissions', $permissions);

允许每个插件动态注入/管理应用程序的权限。

我在这里使用此代码创建了一个 c9.io 环境https://ide.c9.io/steinkel/users-35-custom-permissions

© www.soinside.com 2019 - 2024. All rights reserved.