1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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\FormBuilder;
- use Sonata\AdminBundle\Form\EventListener\ResizeFormListener;
- class ImmutableArrayType extends AbstractType
- {
- public function buildForm(FormBuilder $builder, array $options)
- {
- foreach($options['keys'] as $infos) {
- list($name, $type, $options) = $infos;
- $builder->add($name, $type, $options);
- }
- }
- public function getDefaultOptions(array $options)
- {
- return array(
- 'keys' => array(),
- );
- }
- public function getName()
- {
- return 'sonata_type_immutable_array';
- }
- }
|