基本的に、連想配列を定義するノードの下の構成で、任意の(ただし空ではない)キーと値のペアを許可したいと思います。billings
私はこれを私のConfigurator.php
(の一部)に持っています:
->arrayNode('billings')
->isRequired()
->requiresAtLeastOneElement()
->prototype('scalar')
->end()
->end()
そして、私の中でconfig.yml
:
my_bundle:
billings:
monthly : Monthly
bimonthly : Bimonthly
ただし、出力$config
:
class MyBundleExtension extends Extension
{
/**
* {@inheritDoc}
*/
public function load(array $configs, ContainerBuilder $container)
{
$loader = new Loader\YamlFileLoader($container,
new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml');
$processor = new Processor();
$configuration = new Configuration();
$config = $processor->processConfiguration($configuration, $configs);
$container->setParameter('my_bundle.billings', $config['billings']);
var_dump($config);
die();
}
}
...私が得るのは、連想的なものではなく、数値による配列インデックスです:
'billings' =>
array (size=2)
0 => string 'Monthly' (length=7)
1 => string 'Bimonthly' (length=9)
好奇心から(そしてこれが役立つ場合)、この配列をサービスパラメーターとして挿入しようとしています(この素晴らしいバンドルからの注釈:JMSDiExtraBundle):
class BillingType extends \Symfony\Component\Form\AbstractType
{
/**
* @var array
*/
private $billingChoices;
/**
* @InjectParams({"billingChoices" = @Inject("%billings%")})
*
* @param array $billingChoices
*/
public function __construct(array $billingChoices)
{
$this->billingChoices = $billingChoices;
}
}