ConfigAdmin - 自定义配置文件管理
ConfigAdmin 插件用于管理自定义配置文件。> 此插件基于 CakePHP 2.1 中现有的功能。<br > 参考:https://book.cakephp.com.cn/2.0/en/development/configuration.html #reading-and-writing-configuration-files > 要使用此插件,您必须使用 CakePHP 2.1 或更高版本。<br > 此插件允许最终用户通过简单的 UI 设计修改配置文件中的键值对。
安装和使用
1. 从> 2. 将 ~/plugin/ConfigAdmin 文件夹复制粘贴到您的 app/Plugin 文件夹中。> 3. 将 config_admin_codes.php 文件复制粘贴到 app/Config 文件夹中。> 4. 现在您可以测试它。http: /your-project- name/config_admin/settings > 如果您在 localhost 上测试它,则 - 例如 localhost your_project/config_admin/settings > 5. 现在您可以在控制器中加载 config_admin_codes.php 文件,将其设置在视图中。<br > 6. 在控制器顶部加载 config_admin_codes。在您想要使用配置文件的任何操作中读取它。> 例如:<code><span style=”color: #000000”> <br ><?php App::uses(‘AppController’,’Controller’); Configure::load(‘config_admin_codes’);// 加载配置文件 classContactsControllerextendsAppController{ publicfunctionindex(){ $this->Contact->recursive=0; $this->set(‘contacts’,$this->paginate()); $codes=Configure::read(‘config_admin_codes’);// 读取配置文件 $this->set($codes);// 将配置文件值设置到视图中 } } ?>
联系方式
电子邮件:[email protected]