/** * @param FormBuilderInterface $builder * @param array $options */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder->addEventSubscriber(new CleanFormSubscriber()); $builder->addEventSubscriber(new FormExitSubscriber('lead.field', $options)); $builder->add('label', 'text', array('label' => 'mautic.lead.field.label', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control', 'length' => 50))); $disabled = !empty($options['data']) ? $options['data']->isFixed() : false; $builder->add('group', 'choice', array('choices' => array('core' => 'mautic.lead.field.group.core', 'social' => 'mautic.lead.field.group.social', 'personal' => 'mautic.lead.field.group.personal', 'professional' => 'mautic.lead.field.group.professional'), 'attr' => array('class' => 'form-control', 'tooltip' => 'mautic.lead.field.form.group.help'), 'expanded' => false, 'multiple' => false, 'label' => 'mautic.lead.field.group', 'empty_value' => false, 'required' => false, 'disabled' => $disabled)); $new = !empty($options['data']) && $options['data']->getAlias() ? false : true; $default = $new ? 'text' : $options['data']->getType(); $fieldHelper = new FormFieldHelper(); $fieldHelper->setTranslator($this->translator); $builder->add('type', 'choice', array('choices' => $fieldHelper->getChoiceList(), 'expanded' => false, 'multiple' => false, 'label' => 'mautic.lead.field.type', 'empty_value' => false, 'disabled' => $disabled || !$new, 'attr' => array('class' => 'form-control', 'onchange' => 'Mautic.updateLeadFieldProperties(this.value);'), 'data' => $default, 'required' => false)); $builder->add('properties', 'collection', array('required' => false, 'allow_add' => true, 'error_bubbling' => false)); $builder->add('defaultValue', 'text', array('label' => 'mautic.core.defaultvalue', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control'), 'required' => false)); //get order list $transformer = new FieldToOrderTransformer($this->em); $builder->add($builder->create('order', 'entity', array('label' => 'mautic.core.order', 'class' => 'MauticLeadBundle:LeadField', 'property' => 'label', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control'), 'query_builder' => function (EntityRepository $er) { return $er->createQueryBuilder('f')->orderBy('f.order', 'ASC'); }, 'required' => false))->addModelTransformer($transformer)); $builder->add('alias', 'text', array('label' => 'mautic.core.alias', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control', 'length' => 25, 'tooltip' => 'mautic.lead.field.help.alias'), 'required' => false, 'disabled' => $disabled || !$new)); $data = $disabled ? true : $options['data']->getIsPublished(); $builder->add('isPublished', 'yesno_button_group', array('disabled' => $disabled, 'data' => $data)); $builder->add('isRequired', 'yesno_button_group', array('label' => 'mautic.core.required')); $builder->add('isVisible', 'yesno_button_group', array('label' => 'mautic.lead.field.form.isvisible')); $builder->add('isShortVisible', 'yesno_button_group', array('label' => 'mautic.lead.field.form.isshortvisible')); $builder->add('isListable', 'yesno_button_group', array('label' => 'mautic.lead.field.form.islistable')); $builder->add('isUniqueIdentifer', 'yesno_button_group', array('label' => 'mautic.lead.field.form.isuniqueidentifer', 'attr' => array('tooltip' => 'mautic.lead.field.form.isuniqueidentifer.tooltip'))); $builder->add('isPubliclyUpdatable', 'yesno_button_group', array('label' => 'mautic.lead.field.form.ispubliclyupdatable', 'attr' => array('tooltip' => 'mautic.lead.field.form.ispubliclyupdatable.tooltip'))); $builder->add('buttons', 'form_buttons'); if (!empty($options["action"])) { $builder->setAction($options["action"]); } }
/** * @param FormBuilderInterface $builder * @param array $options */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder->addEventSubscriber(new CleanFormSubscriber()); $builder->addEventSubscriber(new FormExitSubscriber('lead.field', $options)); $builder->add('label', 'text', array('label' => 'mautic.lead.field.label', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control', 'length' => 50))); $disabled = !empty($options['data']) ? $options['data']->isFixed() : false; $builder->add('group', 'choice', array('choices' => array('core' => 'mautic.lead.field.group.core', 'social' => 'mautic.lead.field.group.social', 'personal' => 'mautic.lead.field.group.personal', 'professional' => 'mautic.lead.field.group.professional'), 'attr' => array('class' => 'form-control', 'tooltip' => 'mautic.lead.field.form.group.help'), 'expanded' => false, 'multiple' => false, 'label' => 'mautic.lead.field.group', 'empty_value' => false, 'required' => false, 'disabled' => $disabled)); $new = !empty($options['data']) && $options['data']->getAlias() ? false : true; $default = $new ? 'text' : $options['data']->getType(); $fieldHelper = new FormFieldHelper(); $fieldHelper->setTranslator($this->translator); $builder->add('type', 'choice', array('choices' => $fieldHelper->getChoiceList(), 'expanded' => false, 'multiple' => false, 'label' => 'mautic.lead.field.type', 'empty_value' => false, 'disabled' => $disabled || !$new, 'attr' => array('class' => 'form-control', 'onchange' => 'Mautic.updateLeadFieldProperties(this.value);'), 'data' => $default, 'required' => false)); $builder->add('properties_select_template', 'sortablelist', array('mapped' => false, 'label' => 'mautic.lead.field.form.properties.select', 'option_required' => false)); $builder->add('default_template', 'text', array('label' => 'mautic.core.defaultvalue', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control'), 'required' => false, 'mapped' => false)); $builder->add('default_bool_template', 'yesno_button_group', array('label' => 'mautic.core.defaultvalue', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control'), 'required' => false, 'mapped' => false, 'data' => false)); $builder->add('properties', 'collection', array('required' => false, 'allow_add' => true, 'error_bubbling' => false)); $builder->add('defaultValue', 'text', array('label' => 'mautic.core.defaultvalue', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control'), 'required' => false)); $formModifier = function (FormEvent $event, $eventName) { $form = $event->getForm(); $data = $event->getData(); $type = is_array($data) ? isset($data['type']) ? $data['type'] : null : $data->getType(); if ($type == 'select' || $type == 'lookup') { if (is_array($data) && isset($data['properties'])) { $properties = $data['properties']; } else { $properties = $data->getProperties(); } if (isset($properties['list']) && is_string($properties['list'])) { $properties['list'] = array_map('trim', explode('|', $properties['list'])); } $form->add('properties', 'sortablelist', array('required' => false, 'label' => 'mautic.lead.field.form.properties.select', 'data' => $properties)); } elseif ($type == 'boolean') { if (is_array($data)) { $value = isset($data['defaultValue']) ? $data['defaultValue'] : false; $yesLabel = !empty($data['properties']['yes']) ? $data['properties']['yes'] : 'matuic.core.form.yes'; $noLabel = !empty($data['properties']['no']) ? $data['properties']['no'] : 'matuic.core.form.no'; } else { $value = $data->getDefaultValue(); $props = $data->getProperties(); $yesLabel = !empty($props['yes']) ? $props['yes'] : 'matuic.core.form.yes'; $noLabel = !empty($props['no']) ? $props['no'] : 'matuic.core.form.no'; } $form->add('defaultValue', 'yesno_button_group', array('label' => 'mautic.core.defaultvalue', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control'), 'required' => false, 'data' => !empty($value), 'choice_list' => new ChoiceList(array(false, true), array($noLabel, $yesLabel)))); } elseif (in_array($type, array('datetime', 'date', 'time'))) { $constraints = array(); if ($type === 'datetime') { $constraints = array(new Assert\Callback(function ($object, ExecutionContextInterface $context) { if (\DateTime::createFromFormat('Y-m-d H:i', $object) === false) { $context->buildViolation('mautic.lead.datetime.invalid')->addViolation(); } })); } elseif ($type === 'date') { $constraints = array(new Assert\Date(array('message' => 'mautic.lead.date.invalid'))); } elseif ($type === 'time') { $constraints = array(new Assert\Regex(array('pattern' => '/(2[0-3]|[01][0-9]):([0-5][0-9])/', 'message' => 'mautic.lead.time.invalid'))); } $form->add('defaultValue', 'text', array('label' => 'mautic.core.defaultvalue', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control'), 'required' => false, 'constraints' => $constraints)); } }; $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) use($formModifier) { $formModifier($event, FormEvents::PRE_SET_DATA); }); $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use($formModifier) { $formModifier($event, FormEvents::PRE_SUBMIT); }); //get order list $transformer = new FieldToOrderTransformer($this->em); $builder->add($builder->create('order', 'entity', array('label' => 'mautic.core.order', 'class' => 'MauticLeadBundle:LeadField', 'property' => 'label', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control'), 'query_builder' => function (EntityRepository $er) { return $er->createQueryBuilder('f')->orderBy('f.order', 'ASC'); }, 'required' => false))->addModelTransformer($transformer)); $builder->add('alias', 'text', array('label' => 'mautic.core.alias', 'label_attr' => array('class' => 'control-label'), 'attr' => array('class' => 'form-control', 'length' => 25, 'tooltip' => 'mautic.lead.field.help.alias'), 'required' => false, 'disabled' => $disabled || !$new)); $data = $disabled ? true : $options['data']->getIsPublished(); $builder->add('isPublished', 'yesno_button_group', array('disabled' => $disabled, 'data' => $data)); $builder->add('isRequired', 'yesno_button_group', array('label' => 'mautic.core.required')); $builder->add('isVisible', 'yesno_button_group', array('label' => 'mautic.lead.field.form.isvisible')); $builder->add('isShortVisible', 'yesno_button_group', array('label' => 'mautic.lead.field.form.isshortvisible')); $builder->add('isListable', 'yesno_button_group', array('label' => 'mautic.lead.field.form.islistable')); $data = $options['data']->isUniqueIdentifier(); $builder->add('isUniqueIdentifer', 'yesno_button_group', array('label' => 'mautic.lead.field.form.isuniqueidentifer', 'attr' => array('tooltip' => 'mautic.lead.field.form.isuniqueidentifer.tooltip', 'onchange' => 'Mautic.displayUniqueIdentifierWarning(this)'), 'data' => !empty($data))); $builder->add('isPubliclyUpdatable', 'yesno_button_group', array('label' => 'mautic.lead.field.form.ispubliclyupdatable', 'attr' => array('tooltip' => 'mautic.lead.field.form.ispubliclyupdatable.tooltip'))); $builder->add('buttons', 'form_buttons'); if (!empty($options["action"])) { $builder->setAction($options["action"]); } }
/** * @param FormBuilderInterface $builder * @param array $options */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder->addEventSubscriber(new CleanFormSubscriber()); $builder->addEventSubscriber(new FormExitSubscriber('lead.field', $options)); $builder->add('label', 'text', ['label' => 'mautic.lead.field.label', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control', 'length' => 50]]); $disabled = !empty($options['data']) ? $options['data']->isFixed() : false; $builder->add('group', 'choice', ['choices' => ['core' => 'mautic.lead.field.group.core', 'social' => 'mautic.lead.field.group.social', 'personal' => 'mautic.lead.field.group.personal', 'professional' => 'mautic.lead.field.group.professional'], 'attr' => ['class' => 'form-control', 'tooltip' => 'mautic.lead.field.form.group.help'], 'expanded' => false, 'multiple' => false, 'label' => 'mautic.lead.field.group', 'empty_value' => false, 'required' => false, 'disabled' => $disabled]); $new = !empty($options['data']) && $options['data']->getAlias() ? false : true; $type = $options['data']->getType(); $default = empty($type) ? 'text' : $type; $fieldHelper = new FormFieldHelper(); $fieldHelper->setTranslator($this->translator); $builder->add('type', 'choice', ['choices' => $fieldHelper->getChoiceList(), 'expanded' => false, 'multiple' => false, 'label' => 'mautic.lead.field.type', 'empty_value' => false, 'disabled' => $disabled || !$new, 'attr' => ['class' => 'form-control', 'onchange' => 'Mautic.updateLeadFieldProperties(this.value);'], 'data' => $default, 'required' => false]); $builder->add('properties_select_template', 'sortablelist', ['mapped' => false, 'label' => 'mautic.lead.field.form.properties.select', 'option_required' => false, 'with_labels' => true]); $builder->add('default_template', 'text', ['label' => 'mautic.core.defaultvalue', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'required' => false, 'mapped' => false]); $builder->add('default_bool_template', 'yesno_button_group', ['label' => 'mautic.core.defaultvalue', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'required' => false, 'mapped' => false, 'data' => '', 'empty_value' => ' x ']); $builder->add('properties', 'collection', ['required' => false, 'allow_add' => true, 'error_bubbling' => false]); $builder->add('defaultValue', 'text', ['label' => 'mautic.core.defaultvalue', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'required' => false]); $formModifier = function (FormEvent $event, $eventName) { $form = $event->getForm(); $data = $event->getData(); $type = is_array($data) ? isset($data['type']) ? $data['type'] : null : $data->getType(); switch ($type) { case 'multiselect': case 'select': case 'lookup': if (is_array($data) && isset($data['properties'])) { $properties = $data['properties']; } else { $properties = $data->getProperties(); } $form->add('properties', 'sortablelist', ['required' => false, 'label' => 'mautic.lead.field.form.properties.select', 'data' => $properties, 'with_labels' => true]); break; case 'country': case 'locale': case 'timezone': case 'region': switch ($type) { case 'country': $choices = FormFieldHelper::getCountryChoices(); break; case 'region': $choices = FormFieldHelper::getRegionChoices(); break; case 'timezone': $choices = FormFieldHelper::getTimezonesChoices(); break; case 'locale': $choices = FormFieldHelper::getLocaleChoices(); break; } $form->add('defaultValue', 'choice', ['choices' => $choices, 'label' => 'mautic.core.defaultvalue', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'required' => false, 'data' => !empty($value)]); break; case 'boolean': if (is_array($data)) { $value = isset($data['defaultValue']) ? $data['defaultValue'] : false; $yesLabel = !empty($data['properties']['yes']) ? $data['properties']['yes'] : 'matuic.core.form.yes'; $noLabel = !empty($data['properties']['no']) ? $data['properties']['no'] : 'matuic.core.form.no'; } else { $value = $data->getDefaultValue(); $props = $data->getProperties(); $yesLabel = !empty($props['yes']) ? $props['yes'] : 'matuic.core.form.yes'; $noLabel = !empty($props['no']) ? $props['no'] : 'matuic.core.form.no'; } if ($value !== '' && $value !== null) { $value = (int) $value; } $form->add('defaultValue', 'yesno_button_group', ['label' => 'mautic.core.defaultvalue', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'required' => false, 'data' => $value, 'no_label' => $noLabel, 'yes_label' => $yesLabel, 'empty_value' => ' x ']); break; case 'datetime': case 'date': case 'time': $constraints = []; switch ($type) { case 'datetime': $constraints = [new Assert\Callback(function ($object, ExecutionContextInterface $context) { if (!empty($object) && \DateTime::createFromFormat('Y-m-d H:i', $object) === false) { $context->buildViolation('mautic.lead.datetime.invalid')->addViolation(); } })]; break; case 'date': $constraints = [new Assert\Callback(function ($object, ExecutionContextInterface $context) { if (!empty($object)) { $validator = $context->getValidator(); $violations = $validator->validateValue($object, new Assert\Date()); if (count($violations) > 0) { $context->buildViolation('mautic.lead.date.invalid')->addViolation(); } } })]; break; case 'time': $constraints = [new Assert\Callback(function ($object, ExecutionContextInterface $context) { if (!empty($object)) { $validator = $context->getValidator(); $violations = $validator->validateValue($object, new Assert\Regex(['pattern' => '/(2[0-3]|[01][0-9]):([0-5][0-9])/'])); if (count($violations) > 0) { $context->buildViolation('mautic.lead.time.invalid')->addViolation(); } } })]; break; } $form->add('defaultValue', 'text', ['label' => 'mautic.core.defaultvalue', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'required' => false, 'constraints' => $constraints]); break; } }; $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) use($formModifier) { $formModifier($event, FormEvents::PRE_SET_DATA); }); $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use($formModifier) { $formModifier($event, FormEvents::PRE_SUBMIT); }); //get order list $transformer = new FieldToOrderTransformer($this->em); $builder->add($builder->create('order', 'entity', ['label' => 'mautic.core.order', 'class' => 'MauticLeadBundle:LeadField', 'property' => 'label', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control'], 'query_builder' => function (EntityRepository $er) { return $er->createQueryBuilder('f')->orderBy('f.order', 'ASC'); }, 'required' => false])->addModelTransformer($transformer)); $builder->add('alias', 'text', ['label' => 'mautic.core.alias', 'label_attr' => ['class' => 'control-label'], 'attr' => ['class' => 'form-control', 'length' => 25, 'tooltip' => 'mautic.lead.field.help.alias'], 'required' => false, 'disabled' => $disabled || !$new]); $builder->add('isPublished', 'yesno_button_group', ['disabled' => $options['data']->getAlias() == 'email', 'data' => $options['data']->getAlias() == 'email' ? true : $options['data']->getIsPublished()]); $builder->add('isRequired', 'yesno_button_group', ['label' => 'mautic.core.required']); $builder->add('isVisible', 'yesno_button_group', ['label' => 'mautic.lead.field.form.isvisible']); $builder->add('isShortVisible', 'yesno_button_group', ['label' => 'mautic.lead.field.form.isshortvisible', 'attr' => ['tooltip' => 'mautic.lead.field.form.isshortvisible.tooltip']]); $builder->add('isListable', 'yesno_button_group', ['label' => 'mautic.lead.field.form.islistable']); $data = $options['data']->isUniqueIdentifier(); $builder->add('isUniqueIdentifer', 'yesno_button_group', ['label' => 'mautic.lead.field.form.isuniqueidentifer', 'attr' => ['tooltip' => 'mautic.lead.field.form.isuniqueidentifer.tooltip', 'onchange' => 'Mautic.displayUniqueIdentifierWarning(this)'], 'data' => !empty($data)]); $builder->add('isPubliclyUpdatable', 'yesno_button_group', ['label' => 'mautic.lead.field.form.ispubliclyupdatable', 'attr' => ['tooltip' => 'mautic.lead.field.form.ispubliclyupdatable.tooltip']]); $builder->add('object', 'choice', ['choices' => ['lead' => 'mautic.lead.contact', 'company' => 'mautic.company.company'], 'expanded' => false, 'multiple' => false, 'label' => 'mautic.lead.field.object', 'empty_value' => false, 'attr' => ['class' => 'form-control'], 'required' => true, 'disabled' => $disabled || !$new]); $builder->add('buttons', 'form_buttons'); if (!empty($options['action'])) { $builder->setAction($options['action']); } }