123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?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\DoctrineORMAdminBundle\Filter;
- use Sonata\AdminBundle\Form\Type\Filter\ChoiceType;
- use Sonata\AdminBundle\Datagrid\ProxyQueryInterface;
- class StringFilter extends Filter
- {
- /**
- * {@inheritdoc}
- */
- public function filter(ProxyQueryInterface $queryBuilder, $alias, $field, $data)
- {
- if (!$data || !is_array($data) || !array_key_exists('value', $data)) {
- return;
- }
- $data['value'] = trim($data['value']);
- if (strlen($data['value']) == 0) {
- return;
- }
- $data['type'] = !isset($data['type']) ? ChoiceType::TYPE_CONTAINS : $data['type'];
- $operator = $this->getOperator((int) $data['type']);
- if (!$operator) {
- $operator = 'LIKE';
- }
- // c.name > '1' => c.name OPERATOR :FIELDNAME
- $parameterName = $this->getNewParameterName($queryBuilder);
- $this->applyWhere($queryBuilder, sprintf('%s.%s %s :%s', $alias, $field, $operator, $parameterName));
- if ($data['type'] == ChoiceType::TYPE_EQUAL) {
- $queryBuilder->setParameter($parameterName, $data['value']);
- } else {
- $queryBuilder->setParameter($parameterName, sprintf($this->getOption('format'), $data['value']));
- }
- }
- /**
- * @param string $type
- *
- * @return bool
- */
- private function getOperator($type)
- {
- $choices = array(
- ChoiceType::TYPE_CONTAINS => 'LIKE',
- ChoiceType::TYPE_NOT_CONTAINS => 'NOT LIKE',
- ChoiceType::TYPE_EQUAL => '=',
- );
- return isset($choices[$type]) ? $choices[$type] : false;
- }
- /**
- * {@inheritdoc}
- */
- public function getDefaultOptions()
- {
- return array(
- 'format' => '%%%s%%'
- );
- }
- /**
- * {@inheritdoc}
- */
- public function getRenderSettings()
- {
- return array('sonata_type_filter_choice', array(
- 'field_type' => $this->getFieldType(),
- 'field_options' => $this->getFieldOptions(),
- 'label' => $this->getLabel()
- ));
- }
- }
|