123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <?php
- /*
- * This file is part of the Sonata Project 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;
- use Sonata\AdminBundle\Admin\AdminInterface;
- use Sonata\AdminBundle\Builder\FormContractorInterface;
- use Sonata\AdminBundle\Mapper\BaseGroupedMapper;
- use Symfony\Component\Form\FormBuilder;
- /**
- * This class is use to simulate the Form API.
- */
- class FormMapper extends BaseGroupedMapper
- {
- protected $formBuilder;
- /**
- * @param FormContractorInterface $formContractor
- * @param FormBuilder $formBuilder
- * @param AdminInterface $admin
- */
- public function __construct(FormContractorInterface $formContractor, FormBuilder $formBuilder, AdminInterface $admin)
- {
- parent::__construct($formContractor, $admin);
- $this->formBuilder = $formBuilder;
- }
- /**
- * {@inheritdoc}
- */
- public function reorder(array $keys)
- {
- $this->admin->reorderFormGroup($this->getCurrentGroupName(), $keys);
- return $this;
- }
- /**
- * @param string $name
- * @param string $type
- * @param array $options
- * @param array $fieldDescriptionOptions
- *
- * @return $this
- */
- public function add($name, $type = null, array $options = array(), array $fieldDescriptionOptions = array())
- {
- if ($name instanceof FormBuilder) {
- $fieldName = $name->getName();
- } else {
- $fieldName = $name;
- }
- // "Dot" notation is not allowed as form name, but can be used as property path to access nested data.
- if (!$name instanceof FormBuilder && strpos($fieldName, '.') !== false && !isset($options['property_path'])) {
- $options['property_path'] = $fieldName;
- // fix the form name
- $fieldName = str_replace('.', '__', $fieldName);
- }
- // change `collection` to `sonata_type_native_collection` form type to
- // avoid BC break problems
- if ($type == 'collection') {
- $type = 'sonata_type_native_collection';
- }
- $label = $fieldName;
- $group = $this->addFieldToCurrentGroup($label);
- if (!isset($fieldDescriptionOptions['type']) && is_string($type)) {
- $fieldDescriptionOptions['type'] = $type;
- }
- if ($group['translation_domain'] && !isset($fieldDescriptionOptions['translation_domain'])) {
- $fieldDescriptionOptions['translation_domain'] = $group['translation_domain'];
- }
- $fieldDescription = $this->admin->getModelManager()->getNewFieldDescriptionInstance(
- $this->admin->getClass(),
- $name instanceof FormBuilder ? $name->getName() : $name,
- $fieldDescriptionOptions
- );
- // Note that the builder var is actually the formContractor:
- $this->builder->fixFieldDescription($this->admin, $fieldDescription, $fieldDescriptionOptions);
- if ($fieldName != $name) {
- $fieldDescription->setName($fieldName);
- }
- $this->admin->addFormFieldDescription($fieldName, $fieldDescription);
- if ($name instanceof FormBuilder) {
- $this->formBuilder->add($name);
- } else {
- // Note that the builder var is actually the formContractor:
- $options = array_replace_recursive($this->builder->getDefaultOptions($type, $fieldDescription), $options);
- // be compatible with mopa if not installed, avoid generating an exception for invalid option
- // force the default to false ...
- if (!isset($options['label_render'])) {
- $options['label_render'] = false;
- }
- if (!isset($options['label'])) {
- $options['label'] = $this->admin->getLabelTranslatorStrategy()->getLabel($fieldDescription->getName(), 'form', 'label');
- }
- $help = null;
- if (isset($options['help'])) {
- $help = $options['help'];
- unset($options['help']);
- }
- $this->formBuilder->add($fieldDescription->getName(), $type, $options);
- if (null !== $help) {
- $this->admin->getFormFieldDescription($fieldDescription->getName())->setHelp($help);
- }
- }
- return $this;
- }
- /**
- * {@inheritdoc}
- */
- public function get($name)
- {
- return $this->formBuilder->get($name);
- }
- /**
- * {@inheritdoc}
- */
- public function has($key)
- {
- return $this->formBuilder->has($key);
- }
- /**
- * {@inheritdoc}
- */
- public function remove($key)
- {
- $this->admin->removeFormFieldDescription($key);
- $this->admin->removeFieldFromFormGroup($key);
- $this->formBuilder->remove($key);
- return $this;
- }
- /**
- * @return FormBuilder
- */
- public function getFormBuilder()
- {
- return $this->formBuilder;
- }
- /**
- * @param string $name
- * @param mixed $type
- * @param array $options
- *
- * @return FormBuilder
- */
- public function create($name, $type = null, array $options = array())
- {
- return $this->formBuilder->create($name, $type, $options);
- }
- /**
- * @param array $helps
- *
- * @return FormMapper
- */
- public function setHelps(array $helps = array())
- {
- foreach ($helps as $name => $help) {
- if ($this->admin->hasFormFieldDescription($name)) {
- $this->admin->getFormFieldDescription($name)->setHelp($help);
- }
- }
- return $this;
- }
- /**
- * {@inheritdoc}
- */
- protected function getGroups()
- {
- return $this->admin->getFormGroups();
- }
- /**
- * {@inheritdoc}
- */
- protected function setGroups(array $groups)
- {
- $this->admin->setFormGroups($groups);
- }
- /**
- * {@inheritdoc}
- */
- protected function getTabs()
- {
- return $this->admin->getFormTabs();
- }
- /**
- * {@inheritdoc}
- */
- protected function setTabs(array $tabs)
- {
- $this->admin->setFormTabs($tabs);
- }
- }
|