sonde dnma alone

This commit is contained in:
afornerot 2021-02-17 12:52:44 +01:00
parent 8d87051f7f
commit 5b784279c2
7 changed files with 16 additions and 3 deletions

View File

@ -64,4 +64,5 @@ PROXY_PORT=
# Sonde statistic
SONDE_USE=0
SONDE_USE=0
SONDE_URL=

View File

@ -15,5 +15,6 @@ twig:
wssuse: '%wssuse%'
wssurl: '%wssurl%'
sondeUse: '%sondeUse%'
sondeUrl: '%sondeUrl%'

View File

@ -56,6 +56,7 @@ parameters:
proxyPort: '%env(resolve:PROXY_PORT)%'
sondeUse: '%env(resolve:SONDE_USE)%'
sondeUrl: '%env(resolve:SONDE_URL)%'
imports:
- { resource: packages/janus.yaml }

View File

@ -64,4 +64,5 @@ PROXY_PORT=
# Sonde statistic
SONDE_USE=0
SONDE_USE=0
SONDE_URL=

View File

@ -1 +0,0 @@
*.php

View File

@ -84,6 +84,9 @@
"doctrine/reflection": {
"version": "v1.1.0"
},
"doctrine/sql-formatter": {
"version": "1.1.0"
},
"egulias/email-validator": {
"version": "2.1.17"
},
@ -493,6 +496,9 @@
"symfony/polyfill-php73": {
"version": "v1.14.0"
},
"symfony/polyfill-php80": {
"version": "v1.17.1"
},
"symfony/process": {
"version": "v4.4.5"
},

View File

@ -112,10 +112,14 @@ PROXY_PORT=
# Sonde statistic
%if %%getVar("activer_sondepiwik_local", 'non') == "oui"
SONDE_USE=1
SONDE_URL=/sondepiwik/envoleTrackeur.js.php
%else if %%getVar("activer_piwik", 'non') == "oui"
SONDE_USE=1
SONDE_URL=/piwik/envoleTrackeur.js.php
%else if %%getVar("activer_sondednma", 'non') == "oui"
SONDE_USE=1
SONDE_URL=/sondepiwik/envoleTrackeur.js.php
%else
SONDE_USE=0
SONDE_URL=
%end if