12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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\Datagrid;
- use Sonata\AdminBundle\Admin\Admin;
- use Sonata\AdminBundle\Admin\FieldDescription;
- use Sonata\AdminBundle\Datagrid\ORM\Datagrid;
- use Sonata\AdminBundle\Builder\DatagridBuilderInterface;
- /**
- * This class is use to simulate the Form API
- *
- */
- class DatagridMapper
- {
- protected $datagridBuilder;
- protected $datagrid;
- protected $admin;
- public function __construct(DatagridBuilderInterface $datagridBuilder, Datagrid $datagrid, Admin $admin)
- {
- $this->datagridBuilder = $datagridBuilder;
- $this->datagrid = $datagrid;
- $this->admin = $admin;
- }
- public function add($name, array $fieldDescriptionOptions = array())
- {
- if ($name instanceof FieldDescription) {
- $fieldDescription = $name;
- $fieldDescription->mergeOptions($fieldDescriptionOptions);
- } else if (is_string($name) && !$this->admin->hasFormFieldDescription($name)) {
- $fieldDescription = new FieldDescription;
- $fieldDescription->setName($name);
- $fieldDescription->setOptions($fieldDescriptionOptions);
-
- $this->datagridBuilder->fixFieldDescription($this->admin, $fieldDescription, $fieldDescriptionOptions);
- $this->admin->addListFieldDescription($name, $fieldDescription);
- } else if (is_string($name) && $this->admin->hasFormFieldDescription($name)) {
- $fieldDescription = $this->admin->getFormFieldDescription($name);
- } else {
- throw new \RuntimeException('invalid state');
- }
- // add the field with the FormBuilder
- return $this->datagridBuilder->addFilter(
- $this->datagrid,
- $fieldDescription
- );
- }
- public function get($name)
- {
- return $this->datagrid->get($name);
- }
- public function has($key)
- {
- return $this->datagrid->has($key);
- }
- public function remove($key)
- {
- $this->admin->removeFilterFieldDescription($key);
- $this->datagrid->remove($key);
- }
- }
|