| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- {namespace v=FluidTYPO3\Vhs\ViewHelpers}
- {namespace ot=Opentalent\OtTemplating\ViewHelpers}
- <f:layout name="Backend/Default" />
- <f:section name="content">
- <div class="ot-be-module ot-stats">
- <h1>Statistiques d'utilisation</h1>
- <div id="matomoFilters">
- Données affichées pour la période du
- <b><f:format.date format="d/m/Y">{date_start}</f:format.date></b>
- au
- <b><f:format.date format="d/m/Y">{date_end}</f:format.date></b>
- <a id="matomoFiltersEdit" href="" title="Modifier"><i class="fa fa-edit"></i></a>
- </div>
- <div id="matomoReport">
- <div class="reportSection">
- <f:comment><!-- Real time visits--></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Visites en temps réel', id: 'realTimeVisits',
- module: 'Live', action: 'widget',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- <f:comment><!-- Last visits graph--></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Dernières visites', id: 'lastVisitsGraph',
- module: 'VisitsSummary', action: 'getEvolutionGraph',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- <f:comment><!-- Visits Summary --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Résumé', id: 'visitsSummary',
- module: 'VisitsSummary', action: 'get',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- </div>
- <div class="reportSection">
- <f:comment><!-- By weekday --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Par jours de la semaine', id: 'visitsByWeekday',
- module: 'VisitTime', action: 'getByDayOfWeek',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- <f:comment><!-- By local hour --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Par heures locales', id: 'visitsByHour',
- module: 'VisitTime', action: 'getVisitInformationPerLocalTime',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- <f:comment><!-- Map --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Répartition géographique', id: 'visitsMap',
- module: 'UserCountryMap', action: 'visitorMap', height: '450',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- </div>
- <div class="reportSection">
- <f:comment><!-- Refferers --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Origines', id: 'visitsRefferers',
- module: 'Referrers', action: 'getAll',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- <f:comment><!-- By web-browsers --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'DevicesDetection', id: 'getBrowsers',
- module: 'Referrers', action: 'getAll',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- </div>
- <div class="reportSection">
- <f:comment><!-- By page --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Pages visitées', id: 'visitsByPage',
- module: 'Actions', action: 'getPageUrls', width: '1028',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- </div>
- <div class="reportSection">
- <f:comment><!-- By entry page --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Pages d\'entrée', id: 'visitorsEntryPoints',
- module: 'Actions', action: 'getEntryPageUrls',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- <f:comment><!-- By visits duration --></f:comment>
- <f:render partial="ReportCard"
- arguments="{title: 'Durée des visite', id: 'visitsByDuration',
- module: 'VisitorInterest', action: 'getNumberOfVisitsPerVisitDuration',
- matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
- </div>
- <div class="reportFooter">
- <f:link.action
- action="askForDeactivationConfirmation"
- title="select"
- id="disableLink"
- class="warning"
- >
- Désactiver le suivi de l'utilisation
- </f:link.action>
- </div>
- </div>
- </div>
- </f:section>
|