我正在构建一个扩展来从所有已安装的捆绑包中加载配置文件。
我的扩展看起来像这样:
namespace Acme\MenuBundle\DependencyInjection;
// use ...
use Acme\MenuBundle\DependencyInjection\Configuration;
class AcmeMenuExtension extends Extension {
public function load(array $configs, ContainerBuilder $container) {
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$finder = new \Symfony\Component\Finder\Finder();
$finder
->directories()
->in($container->getParameter('kernel.root_dir') . '/../src/*/*Bundle/Resources')
->path('config');
$possibleLocations = array();
foreach ($finder as $c_dir) {
$possibleLocations[] = $c_dir->getPathName();
}
$loader = new Loader\YamlFileLoader($container, new FileLocator($possibleLocations));
$loader->load('menu.yml');
}
}
然后是我的(非常简单的)配置类:我将来会添加一个更复杂的树,但现在我希望它可以使用:
namespace Acme\MenuBundle\DependencyInjection;
// use ...
class Configuration implements ConfigurationInterface {
public function getConfigTreeBuilder() {
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('mw_menu');
$rootNode
->children()
->scalarNode('mw_menu')->defaultValue('')->end()
->end();
return $treeBuilder;
}
}
为了测试,我只在当前 MenuBundle\Resources\config 中放置了一个“menu.yml”文件,其中包含以下内容:
# file: src\Acme\MenuBundle\Resource\config\menu.yml
mw_menu: "some teststring"
对于手动测试,我在默认控制器中使用 testAction,它实际上只渲染一个空模板。
无论如何,我得到这个错误:
InvalidArgumentException: There is no extension able to load the configuration for
"mw_menu" (in {path to symfony}/app/../src/Acme/MenuBundle/Resources\config\menu.yml).
Looked for namespace "mw_menu", found none
我该如何解决?
据我目前了解,Symfony 注意到配置文件中的键“mw_menu”,但无法找到匹配的配置。
我按照食谱文章工作:如何公开语义配置?
请注意:我知道 Knp Menu Bundle 和类似的 Bundle,但我确实想自己实现一个菜单。
另外我发现了这个通知。他是对的吗?