mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 01:43:13 +00:00
Merge pull request #3413 from alchemy-fr/PHRAS-2997-Add_Matomo_analytic_service
PHRAS-2997 #comment merge of Matomo analytic service in Phraseanet core
This commit is contained in:
0
cache/.gitkeep
vendored
0
cache/.gitkeep
vendored
@@ -102,6 +102,8 @@ class RegistryFormManipulator
|
||||
'keywords' => null,
|
||||
'description' => null,
|
||||
'analytics' => null,
|
||||
'matomo-analytics-url' => null,
|
||||
'matomo-analytics-id' => null,
|
||||
'allow-indexation' => true,
|
||||
'home-presentation-mode' => 'GALLERIA',
|
||||
'default-subdef-url-ttl' => 7200,
|
||||
|
@@ -38,6 +38,12 @@ class GeneralFormType extends AbstractType
|
||||
$builder->add('analytics', 'text', [
|
||||
'label' => 'Google Analytics identifier',
|
||||
]);
|
||||
$builder->add('matomo-analytics-url', 'text', [
|
||||
'label' => 'Matomo Analytics url',
|
||||
]);
|
||||
$builder->add('matomo-analytics-id', 'text', [
|
||||
'label' => 'Matomo Analytics identifier',
|
||||
]);
|
||||
$builder->add('allow-indexation', 'checkbox', [
|
||||
'label' => 'Allow the website to be indexed by search engines like Google',
|
||||
]);
|
||||
|
@@ -84,5 +84,7 @@ define('GV_homeTitle', 'SuperPhraseanet');
|
||||
define('GV_metaKeywords', '');
|
||||
define('GV_metaDescription', '');
|
||||
define('GV_googleAnalytics', '');
|
||||
define('GV_matomoAnalyticsUrl', '');
|
||||
define('GV_matomoAnalyticsId', '');
|
||||
define('GV_allow_search_engine', true);
|
||||
define('GV_display_gcf', true);
|
||||
|
@@ -24,5 +24,6 @@
|
||||
<body>
|
||||
{% block content %}{% endblock %}
|
||||
{% include 'common/analytics.html.twig' %}
|
||||
{% include 'common/matomo_analytics.html.twig' %}
|
||||
</body>
|
||||
</html>
|
||||
|
18
templates/mobile/common/matomo_analytics.html.twig
Normal file
18
templates/mobile/common/matomo_analytics.html.twig
Normal file
@@ -0,0 +1,18 @@
|
||||
{% if app['conf'].get(['registry', 'general', 'matomo-analytics-url']) != '' %}
|
||||
{% if app['conf'].get(['registry', 'general', 'matomo-analytics-id']) != '' %}
|
||||
<!-- Matomo -->
|
||||
<script type="text/javascript">
|
||||
var _paq = window._paq || [];
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="//{{ app['conf'].get(['registry', 'general', 'matomo-analytics-url']) }}/";
|
||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||
_paq.push(['setSiteId', {{ app['conf'].get(['registry', 'general', 'matomo-analytics-id']) }}]);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<!-- End Matomo Code -->
|
||||
{% endif %}
|
||||
{% endif %}
|
@@ -42,5 +42,6 @@
|
||||
{% block extra_content %}{% endblock %}
|
||||
{% block bodyJavascript %}{% endblock %}
|
||||
{% include 'common/analytics.html.twig' %}
|
||||
{% include 'common/matomo_analytics.html.twig' %}
|
||||
</body>
|
||||
</html>
|
||||
|
@@ -25,5 +25,6 @@
|
||||
</div>
|
||||
</div>
|
||||
{% include 'common/analytics.html.twig' %}
|
||||
{% include 'common/matomo_analytics.html.twig' %}
|
||||
</body>
|
||||
</html>
|
||||
|
18
templates/web/common/matomo_analytics.html.twig
Normal file
18
templates/web/common/matomo_analytics.html.twig
Normal file
@@ -0,0 +1,18 @@
|
||||
{% if app['conf'].get(['registry', 'general', 'matomo-analytics-url']) != '' %}
|
||||
{% if app['conf'].get(['registry', 'general', 'matomo-analytics-id']) != '' %}
|
||||
<!-- Matomo -->
|
||||
<script type="text/javascript">
|
||||
var _paq = window._paq || [];
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="{{ app['conf'].get(['registry', 'general', 'matomo-analytics-url']) }}/";
|
||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||
_paq.push(['setSiteId', {{ app['conf'].get(['registry', 'general', 'matomo-analytics-id']) }}]);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<!-- End Matomo Code -->
|
||||
{% endif %}
|
||||
{% endif %}
|
@@ -100,6 +100,7 @@
|
||||
{% endblock %}
|
||||
{% block analytics %}
|
||||
{% include 'common/analytics.html.twig' %}
|
||||
{% include 'common/matomo_analytics.html.twig' %}
|
||||
{% endblock analytics %}
|
||||
|
||||
{% block scripts %}{% endblock scripts %}
|
||||
|
@@ -193,6 +193,8 @@ registry:
|
||||
keywords: ''
|
||||
description: ''
|
||||
analytics: ''
|
||||
matomo-analytics-url: ''
|
||||
matomo-analytics-id: ''
|
||||
allow-indexation: true
|
||||
home-presentation-mode: COOLIRIS
|
||||
modules:
|
||||
|
Reference in New Issue
Block a user