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) を 1 つ持つことができます。私は自分のテーマで使用するために大量の配列を使用しており、組織的な目的で、Bolt で使用する YAML ファイルをさらに追加できる方法があるかどうかを確認したいと考えていました。
使用するテーマに追加の YAML ファイル/配列を追加するための最良の方法は何ですか?
かなり簡単なはずです。Extension クラス (BaseExtension を拡張する) で次のようなことを試してください。
// Load another config if ($this->isConfigValid('another.yml', true)) { $this->loadConfigFile('another.yml'); }