Commit 17e63791 by Damien Moulard

add phone number to contact phone if param defined

parent 2a3af91b
...@@ -784,6 +784,11 @@ App\Entity\GlobalParameter: ...@@ -784,6 +784,11 @@ App\Entity\GlobalParameter:
description: "Paiement par chèque : Ordre à mettre sur ceux-ci" description: "Paiement par chèque : Ordre à mettre sur ceux-ci"
value: '' value: ''
mandatory: 1 mandatory: 1
gp30:
name: "CONTACT_FORM_PHONE_NUMBER"
description: "Numéro de téléphone à afficher dans le formulaire de contact si défini"
value: ''
mandatory: 1
App\Entity\Siege: App\Entity\Siege:
......
...@@ -784,6 +784,11 @@ App\Entity\GlobalParameter: ...@@ -784,6 +784,11 @@ App\Entity\GlobalParameter:
description: "Paiement par chèque : Ordre à mettre sur ceux-ci" description: "Paiement par chèque : Ordre à mettre sur ceux-ci"
value: '' value: ''
mandatory: 1 mandatory: 1
gp30:
name: "CONTACT_FORM_PHONE_NUMBER"
description: "Numéro de téléphone à afficher dans le formulaire de contact si défini"
value: ''
mandatory: 1
App\Entity\Siege: App\Entity\Siege:
......
...@@ -50,6 +50,7 @@ class GlobalParameter ...@@ -50,6 +50,7 @@ class GlobalParameter
const HELLOASSO_URL_EMLC_PRESTATAIRE = 'HELLOASSO_URL_EMLC_PRESTATAIRE'; const HELLOASSO_URL_EMLC_PRESTATAIRE = 'HELLOASSO_URL_EMLC_PRESTATAIRE';
const HELLOASSO_URL_COTISATION_ADHERENT = 'HELLOASSO_URL_COTISATION_ADHERENT'; const HELLOASSO_URL_COTISATION_ADHERENT = 'HELLOASSO_URL_COTISATION_ADHERENT';
const HELLOASSO_URL_COTISATION_PRESTATAIRE = 'HELLOASSO_URL_COTISATION_PRESTATAIRE'; const HELLOASSO_URL_COTISATION_PRESTATAIRE = 'HELLOASSO_URL_COTISATION_PRESTATAIRE';
const CONTACT_FORM_PHONE_NUMBER = 'CONTACT_FORM_PHONE_NUMBER';
/** /**
* @var \Ramsey\Uuid\UuidInterface * @var \Ramsey\Uuid\UuidInterface
......
...@@ -324,6 +324,13 @@ class GlobalConfigurationFormType extends AbstractType ...@@ -324,6 +324,13 @@ class GlobalConfigurationFormType extends AbstractType
// 'label_attr' => ['class' => 'checkbox-inline'], ], // 'label_attr' => ['class' => 'checkbox-inline'], ],
'help' => 'Si cette option est à "true", les prestataires pourront ajouter un don lors de leur acaht d\'e-mlc.', 'help' => 'Si cette option est à "true", les prestataires pourront ajouter un don lors de leur acaht d\'e-mlc.',
]) ])
->add('contactformphonenumber', GlobalParameterType::class, [
'label' => 'Numéro de téléphone à afficher dans le formulaire de contact si défini',
'_description' => 'Numéro de téléphone à afficher dans le formulaire de contact si défini',
'name_param' => GlobalParameter::CONTACT_FORM_PHONE_NUMBER,
'required' => false,
'_placeholder' => '',
])
; ;
} }
......
...@@ -40,6 +40,9 @@ ...@@ -40,6 +40,9 @@
{{ form_row(form.captcha) }} {{ form_row(form.captcha) }}
{{ form_row(form.save) }} {{ form_row(form.save) }}
{{form_end(form)}} {{form_end(form)}}
{% if KOH_CONTACT_FORM_PHONE_NUMBER|default('') != '' %}
<p style="margin-top: 30px;">Vous pouvez aussi nous contacter au {{KOH_CONTACT_FORM_PHONE_NUMBER}}</p>
{% endif %}
</div> </div>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment