aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/DataTransformer/StringToListTransformer.php
blob: 57dbc95ed9bc83f5b51a67f4da4841678ec493bb (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                   
                                                    
 

                                                           
                                                                       
   

                                                                 


                  

                       
       
                                                              
       























                                                 
                            




                                             
                               
                   

         
                                                                                                 

     
<?php

namespace Wallabag\CoreBundle\Form\DataTransformer;

use Symfony\Component\Form\DataTransformerInterface;

/**
 * Transforms a comma-separated list to a proper PHP array.
 * Example: the string "foo, bar" will become the array ["foo", "bar"].
 */
class StringToListTransformer implements DataTransformerInterface
{
    /**
     * @var string
     */
    private $separator;

    /**
     * @param string $separator The separator used in the list
     */
    public function __construct($separator = ',')
    {
        $this->separator = $separator;
    }

    /**
     * Transforms a list to a string.
     *
     * @param array|null $list
     *
     * @return string
     */
    public function transform($list)
    {
        if (null === $list) {
            return '';
        }

        return implode($this->separator, $list);
    }

    /**
     * Transforms a string to a list.
     *
     * @param string $string
     *
     * @return array|null
     */
    public function reverseTransform($string)
    {
        if (null === $string) {
            return;
        }

        return array_values(array_filter(array_map('trim', explode($this->separator, $string))));
    }
}