/
home
/
clp
/
htdocs
/
app
/
files
/
src
/
Form
/
up file
home
<?php namespace App\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Symfony\Component\Validator\Constraints as Assert; class SiteDomainSettingsType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) : void { $builder->add("\144\x6f\155\x61\x69\x6e\x4e\x61\155\x65", TextType::class, ["\x72\x65\161\165\x69\162\x65\x64" => false, "\141\x74\164\x72" => ["\143\154\x61\163\163" => "\146\157\162\x6d\55\x63\157\156\164\162\157\x6c\x20\146\157\162\155\55\x63\157\156\x74\x72\x6f\154\x2d\154\147"], "\x64\151\x73\x61\x62\x6c\145\x64" => true, "\154\141\142\x65\154" => "\x44\157\x6d\141\151\156\40\x4e\141\155\145"]); $builder->add("\x72\157\x6f\x74\x44\x69\162\145\143\x74\157\x72\171", TextType::class, ["\162\145\x71\x75\151\x72\x65\144" => true, "\x61\164\164\162" => ["\x63\x6c\x61\163\x73" => "\x66\x6f\x72\x6d\x2d\x63\157\x6e\164\x72\157\154\x20\146\x6f\x72\x6d\55\143\x6f\156\164\x72\157\x6c\x2d\154\x67"], "\154\x61\x62\145\x6c" => "\x52\x6f\157\x74\40\104\x69\162\x65\x63\x74\x6f\162\x79", "\143\157\156\x73\164\x72\141\151\x6e\x74\x73" => [new Assert\NotNull()]]); } public function getName() : string { return "\143\x6c\160\137\163\x69\164\x65\x5f\144\157\x6d\x61\151\x6e\x5f\x73\x65\164\164\151\x6e\147\163"; } }