Skip to content
Snippets Groups Projects
Commit dfb122a9 authored by Sebastien ANDRE's avatar Sebastien ANDRE
Browse files

hotline#113329 : Bootstrap : Restore Analytics for OPAC

parent 2655891e
Branches
Tags
2 merge requests!3623Hotline,!3622hotline#113329 : Bootstrap : Restore Analytics for OPAC
Pipeline #10984 failed with stage
in 1 hour, 23 minutes, and 4 seconds
- ticket #113329 : Magasin de thème : Les Statistiques de page web à l'OPAC (Google analytics et Matomo) fonctionnent.
\ No newline at end of file
......@@ -37,7 +37,8 @@ class Intonation_View_Opac extends ZendAfi_View_Helper_BaseHelper {
public function render() {
$content = $this->view->grid($this->_tag('div',
$this->_bodyContent(),
$this->_template->getHtmlAttribs()));
$this->_template->getHtmlAttribs()))
. $this->_renderJSstat();
$body = $this->_tag('body',
$content,
......@@ -113,6 +114,11 @@ class Intonation_View_Opac extends ZendAfi_View_Helper_BaseHelper {
}
protected function _renderJSstat() {
return Class_AdminVar::get('JS_STAT');
}
protected function _headContent() {
$script_loader = Class_ScriptLoader::getInstance();
$head_scripts = Class_ScriptLoader::newInstance()
......
<?php
/**
* Copyright (c) 2012-2020, Agence Française Informatique (AFI). All rights reserved.
*
* BOKEH is free software; you can redistribute it and/or modify
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
* the Free Software Foundation.
*
* There are special exceptions to the terms and conditions of the AGPL as it
* is applied to this software (see README file).
*
* BOKEH is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with BOKEH; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
require_once('TemplatesTest.php');
class TemplatesDispatchIntonationScriptsTest extends TemplatesIntonationTestCase {
public function setUp() {
parent::setUp();
Class_AdminVar::newInstanceWithId('JS_STAT', ['valeur' => "<script> var _gaq = _gaq ||
[]; _gaq.push(['_setAccount',
'UA-41754005-1']);
_gaq.push(['_trackPageview']);
(function() { var ga =
document.createElement('script');
ga.type = 'text/javascript'; ga.async =
true; ga.src = ('https:' ==
document.location.protocol ?
'https://ssl' : 'http://www') +
'.google-analytics.com/ga.js'; var
s =
document.getElementsByTagName('script')[
0]; s.parentNode.insertBefore(ga, s);
})(); </script>"]);
Class_AdminVar::newInstanceWithId('NOM_DOMAINE', ['valeur' => ""]);
$this->dispatch('/opac/index/index/id_profil/72');
}
/** @test */
public function JSSTATshouldBeDisplayedInFooter() {
$this->assertXPathContentContains('//script', 'UA-41754005-1', $this->_response->getBody());
}
/** @test */
public function JSSTATshouldAppearOnlyOnce() {
$this->assertXPathCount('//script[contains(text(), "UA-41754005-1")]', 1);
}
}
\ No newline at end of file
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