Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
默认情况下,Bolt 主题允许您拥有一个 YAML 文件 (config.yml) 以在主题文件中进行访问。我在我的主题中使用了大量的数组,出于组织目的想看看是否有一种方法可以添加更多的 YAML 文件以在 Bolt 中使用。
添加其他 YAML 文件/数组供我的主题使用的最佳方法是什么?
应该是相当简单的。在 Extension 类(扩展 BaseExtension)中尝试类似以下的操作......
// Load another config if ($this->isConfigValid('another.yml', true)) { $this->loadConfigFile('another.yml'); }