Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kohinos-tav
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
agplv3
kohinos-tav
Commits
17e63791
Commit
17e63791
authored
Sep 18, 2023
by
Damien Moulard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add phone number to contact phone if param defined
parent
2a3af91b
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
0 deletions
+21
-0
fixtures-tav.yaml
fixtures/tavtest/fixtures-tav.yaml
+5
-0
dev-fixture.yaml
fixtures/test/dev-fixture.yaml
+5
-0
GlobalParameter.php
src/Entity/GlobalParameter.php
+1
-0
GlobalConfigurationFormType.php
src/Form/Type/GlobalConfigurationFormType.php
+7
-0
contact.html.twig
templates/themes/kohinos/contact.html.twig
+3
-0
No files found.
fixtures/tavtest/fixtures-tav.yaml
View file @
17e63791
...
...
@@ -784,6 +784,11 @@ App\Entity\GlobalParameter:
description
:
"
Paiement
par
chèque
:
Ordre
à
mettre
sur
ceux-ci"
value
:
'
'
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
:
...
...
fixtures/test/dev-fixture.yaml
View file @
17e63791
...
...
@@ -784,6 +784,11 @@ App\Entity\GlobalParameter:
description
:
"
Paiement
par
chèque
:
Ordre
à
mettre
sur
ceux-ci"
value
:
'
'
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
:
...
...
src/Entity/GlobalParameter.php
View file @
17e63791
...
...
@@ -50,6 +50,7 @@ class GlobalParameter
const
HELLOASSO_URL_EMLC_PRESTATAIRE
=
'HELLOASSO_URL_EMLC_PRESTATAIRE'
;
const
HELLOASSO_URL_COTISATION_ADHERENT
=
'HELLOASSO_URL_COTISATION_ADHERENT'
;
const
HELLOASSO_URL_COTISATION_PRESTATAIRE
=
'HELLOASSO_URL_COTISATION_PRESTATAIRE'
;
const
CONTACT_FORM_PHONE_NUMBER
=
'CONTACT_FORM_PHONE_NUMBER'
;
/**
* @var \Ramsey\Uuid\UuidInterface
...
...
src/Form/Type/GlobalConfigurationFormType.php
View file @
17e63791
...
...
@@ -324,6 +324,13 @@ class GlobalConfigurationFormType extends AbstractType
// 'label_attr' => ['class' => 'checkbox-inline'], ],
'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'
=>
''
,
])
;
}
...
...
templates/themes/kohinos/contact.html.twig
View file @
17e63791
...
...
@@ -40,6 +40,9 @@
{{
form_row
(
form.captcha
)
}}
{{
form_row
(
form.save
)
}}
{{
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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment