12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- /*
- * This file is part of the Sonata package.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- */
- namespace Sonata\AdminBundle\Form\Type;
- use Symfony\Component\Form\AbstractType;
- use Symfony\Component\Form\FormBuilderInterface;
- use Symfony\Component\OptionsResolver\OptionsResolverInterface;
- class ImmutableArrayType extends AbstractType
- {
- /**
- * {@inheritDoc}
- */
- public function buildForm(FormBuilderInterface $builder, array $options)
- {
- foreach ($options['keys'] as $infos) {
- if ($infos instanceof FormBuilderInterface) {
- $builder->add($infos);
- } else {
- list($name, $type, $options) = $infos;
- if (is_callable($options)) {
- $options = $options($builder, $options);
- }
- $builder->add($name, $type, $options);
- }
- }
- }
- /**
- * {@inheritDoc}
- */
- public function setDefaultOptions(OptionsResolverInterface $resolver)
- {
- $resolver->setDefaults(array(
- 'keys' => array(),
- ));
- }
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
- return 'sonata_type_immutable_array';
- }
- }
|