123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?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\AdminInterface;
- use Sonata\AdminBundle\Admin\FieldDescriptionInterface;
- use Sonata\AdminBundle\Model\ModelManagerInterface;
- use Sonata\AdminBundle\Datagrid\DatagridInterface;
- use Sonata\AdminBundle\Builder\DatagridBuilderInterface;
- use Sonata\AdminBundle\Filter\FilterProxy;
- /**
- * This class is use to simulate the Form API
- *
- */
- class DatagridMapper
- {
- protected $datagridBuilder;
- protected $datagrid;
- protected $admin;
- /**
- * @param \Sonata\AdminBundle\Builder\DatagridBuilderInterface $datagridBuilder
- * @param DatagridInterface $datagrid
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- */
- public function __construct(DatagridBuilderInterface $datagridBuilder, DatagridInterface $datagrid, AdminInterface $admin)
- {
- $this->datagridBuilder = $datagridBuilder;
- $this->datagrid = $datagrid;
- $this->admin = $admin;
- }
- /**
- * @throws \RuntimeException
- * @param $name
- * @param null $type
- * @param array $filterOptions
- * @param null $fieldType
- * @param array $fieldOptions
- * @return DatagridMapper
- */
- public function add($name, $type = null, array $filterOptions = array(), $fieldType = null, $fieldOptions = null)
- {
- if (is_array($fieldOptions)) {
- $filterOptions['field_options'] = $fieldOptions;
- }
- if ($fieldType) {
- $filterOptions['field_type'] = $fieldType;
- }
- $filterOptions['field_name'] = isset($filterOptions['field_name']) ? $filterOptions['field_name'] : substr(strrchr('.'.$name,'.'), 1);
- if ($name instanceof FieldDescriptionInterface) {
- $fieldDescription = $name;
- $fieldDescription->mergeOptions($filterOptions);
- } else if (is_string($name) && !$this->admin->hasFilterFieldDescription($name)) {
- $fieldDescription = $this->admin->getModelManager()->getNewFieldDescriptionInstance(
- $this->admin->getClass(),
- $name,
- $filterOptions
- );
- } else {
- throw new \RuntimeException('invalid state');
- }
- // add the field with the DatagridBuilder
- $this->datagridBuilder->addFilter($this->datagrid, $type, $fieldDescription, $this->admin);
- return $this;
- }
- /**
- * @param string $name
- * @return FilterInterface
- */
- public function get($name)
- {
- return $this->datagrid->getFilter($name);
- }
- /**
- * @param string $key
- * @return boolean
- */
- public function has($key)
- {
- return $this->datagrid->hasFilter($key);
- }
- /**
- * @param string $key
- * @return \Sonata\AdminBundle\Datagrid\DatagridMapper
- */
- public function remove($key)
- {
- $this->admin->removeFilterFieldDescription($key);
- $this->datagrid->removeFilter($key);
- return $this;
- }
- /**
- * @param array $keys field names
- * @return \Sonata\AdminBundle\Datagrid\ListMapper
- */
- public function reorder(array $keys)
- {
- $this->datagrid->reorderFilters($keys);
- return $this;
- }
- }
|