![]() 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/WebhookBundle/Form/Type/ |
<?php namespace Mautic\WebhookBundle\Form\Type; use Mautic\CoreBundle\Form\Type\SortableListType; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType; use Symfony\Component\Form\Extension\Core\Type\NumberType; use Symfony\Component\Form\Extension\Core\Type\UrlType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Validator\Constraints\NotBlank; use Symfony\Contracts\Translation\TranslatorInterface; /** * @extends AbstractType<array<mixed>> */ class CampaignEventSendWebhookType extends AbstractType { public function __construct( private TranslatorInterface $translator ) { } public function buildForm(FormBuilderInterface $builder, array $options): void { $builder->add( 'url', UrlType::class, [ 'label' => 'mautic.webhook.event.sendwebhook.url', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'required' => true, 'constraints' => [ new NotBlank( [ 'message' => 'mautic.core.value.required', ] ), ], ] ); $builder->add( 'method', ChoiceType::class, [ 'choices' => [ 'GET' => 'get', 'POST' => 'post', 'PUT' => 'put', 'PATCH' => 'patch', 'DELETE' => 'delete', ], 'multiple' => false, 'label_attr' => ['class' => 'control-label'], 'label' => 'mautic.webhook.event.sendwebhook.method', 'attr' => [ 'class' => 'form-control', ], 'placeholder' => false, 'required' => false, ] ); $builder->add( 'headers', SortableListType::class, [ 'required' => false, 'label' => 'mautic.webhook.event.sendwebhook.headers', 'option_required' => false, 'with_labels' => true, ] ); $builder->add( 'additional_data', SortableListType::class, [ 'required' => false, 'label' => 'mautic.webhook.event.sendwebhook.data', 'option_required' => false, 'with_labels' => true, ] ); $builder->add( 'timeout', NumberType::class, [ 'label' => 'mautic.webhook.event.sendwebhook.timeout', 'label_attr' => ['class' => 'control-label'], 'attr' => [ 'class' => 'form-control', 'postaddon_text' => $this->translator->trans('mautic.core.time.seconds'), ], 'data' => !empty($options['data']['timeout']) ? $options['data']['timeout'] : 10, ] ); } /** * @return string */ public function getBlockPrefix() { return 'campaignevent_sendwebhook'; } }