![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/FormBundle/Form/Type/ |
<?php declare(strict_types=1); namespace Mautic\FormBundle\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\IntegerType; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\Form\FormBuilderInterface; /** * @extends AbstractType<FormFieldNumberType> */ class FormFieldNumberType extends AbstractType { /** * {@inheritdoc} */ public function buildForm(FormBuilderInterface $builder, array $options): void { $builder->add('placeholder', TextType::class, [ 'label' => 'mautic.form.field.form.property_placeholder', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'required' => false, ]); $builder->add( 'precision', IntegerType::class, [ 'label' => 'mautic.form.field.form.number_precision', 'label_attr' => ['class' => 'control-label'], 'data' => $options['data']['precision'] ?? 0, 'attr' => [ 'class' => 'form-control', 'tooltip' => 'mautic.form.field.form.number_precision.tooltip', ], 'required' => false, ] ); } /** * {@inheritdoc} */ public function getBlockPrefix(): string { return 'formfield_number'; } }