Edit file File name : ColorPickerType.php Content :<?php /* * This file is part of the Kimai time-tracking app. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace App\Form\Type; use App\Constants; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\DataTransformerInterface; use Symfony\Component\Form\Extension\Core\Type\ColorType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; class ColorPickerType extends AbstractType implements DataTransformerInterface { public const DEFAULT_COLOR = Constants::DEFAULT_COLOR; /** * {@inheritdoc} */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder->addViewTransformer($this); } /** * {@inheritdoc} */ public function configureOptions(OptionsResolver $resolver) { $resolver->setDefaults([ 'documentation' => [ 'type' => 'string', 'description' => sprintf('The hexadecimal color code (default: %s)', self::DEFAULT_COLOR), ], 'label' => 'label.color', 'empty_data' => null, ]); } /** * {@inheritdoc} */ public function transform($data) { if (empty($data)) { return self::DEFAULT_COLOR; } return $data; } /** * {@inheritdoc} */ public function reverseTransform($data) { return null === $data ? self::DEFAULT_COLOR : $data; } /** * {@inheritdoc} */ public function getParent() { return ColorType::class; } } Save