Pour insérer le code Piwik dans vos pages, importez la feuille de style XSLT dans votre charte graphique (fichier dans web\skins\[NOMDELASKIN]\stylesheets\head.xsl)
<xsl:import href="plugin:web-analytics://stylesheets/piwik.xsl" />
<xsl:import href="plugin:web-analytics://stylesheets/piwik.xsl" />
<xsl:import href="plugin:web-analytics://stylesheets/piwik.xsl" />
Puis utilisez le template piwik dans la section <head>
<html> <head> [...] <xsl:call-template name="piwik"/> </head> <body>...</body> </html>
<html> <head> [...] <xsl:call-template name="piwik"/> </head> <body>...</body> </html>
<html> <head> [...] <xsl:call-template name="piwik"/> </head> <body>...</body> </html>
Piwik permet d'obtenir des statistiques sur les mots clés les plus recherchés.
Depuis la version 1.1.0 du plugin web-analytics, Ametys supporte cette fonctionnalité en envoyant au serveur Piwik les mots clés recherchés au travers du champ de recherche "texfield". Ce champ de recherche est le champ de recherche "Mots clés" utilisé par défaut dans tous les moteurs de recherche Ametys.
Si vous avez besoin de traquer un autre champ de recherche, utilisez le template "piwik" en précisant le/les champs de recherche à traquer comme ci-dessous:
<xsl:call-template name="piwik"> <xsl:with-param name="keywordFields"> <fields> <field name="textfield"/> <field name="keywords"/> </fields> </xsl:with-param> </xsl:call-template>
<xsl:call-template name="piwik"> <xsl:with-param name="keywordFields"> <fields> <field name="textfield"/> <field name="keywords"/> </fields> </xsl:with-param> </xsl:call-template>
<xsl:call-template name="piwik"> <xsl:with-param name="keywordFields"> <fields> <field name="textfield"/> <field name="keywords"/> </fields> </xsl:with-param> </xsl:call-template>