Index.html 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {namespace v=FluidTYPO3\Vhs\ViewHelpers}
  2. {namespace ot=Opentalent\OtTemplating\ViewHelpers}
  3. <f:layout name="Backend/Default" />
  4. <f:section name="content">
  5. <div class="ot-be-module ot-stats">
  6. <h1>Statistiques d'utilisation</h1>
  7. <div id="matomoFilters">
  8. Données affichées pour la période du
  9. <b><f:format.date format="d/m/Y">{date_start}</f:format.date></b>
  10. au
  11. <b><f:format.date format="d/m/Y">{date_end}</f:format.date></b>
  12. <a id="matomoFiltersEdit" href="" title="Modifier"><i class="fa fa-edit"></i></a>
  13. </div>
  14. <div id="matomoReport">
  15. <div class="reportSection">
  16. <f:comment><!-- Real time visits--></f:comment>
  17. <f:render partial="ReportCard"
  18. arguments="{title: 'Visites en temps réel', id: 'realTimeVisits',
  19. module: 'Live', action: 'widget',
  20. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  21. <f:comment><!-- Last visits graph--></f:comment>
  22. <f:render partial="ReportCard"
  23. arguments="{title: 'Dernières visites', id: 'lastVisitsGraph',
  24. module: 'VisitsSummary', action: 'getEvolutionGraph',
  25. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  26. <f:comment><!-- Visits Summary --></f:comment>
  27. <f:render partial="ReportCard"
  28. arguments="{title: 'Résumé', id: 'visitsSummary',
  29. module: 'VisitsSummary', action: 'get',
  30. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  31. </div>
  32. <div class="reportSection">
  33. <f:comment><!-- By weekday --></f:comment>
  34. <f:render partial="ReportCard"
  35. arguments="{title: 'Par jours de la semaine', id: 'visitsByWeekday',
  36. module: 'VisitTime', action: 'getByDayOfWeek',
  37. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  38. <f:comment><!-- By local hour --></f:comment>
  39. <f:render partial="ReportCard"
  40. arguments="{title: 'Par heures locales', id: 'visitsByHour',
  41. module: 'VisitTime', action: 'getVisitInformationPerLocalTime',
  42. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  43. <f:comment><!-- Map --></f:comment>
  44. <f:render partial="ReportCard"
  45. arguments="{title: 'Répartition géographique', id: 'visitsMap',
  46. module: 'UserCountryMap', action: 'visitorMap', height: '450',
  47. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  48. </div>
  49. <div class="reportSection">
  50. <f:comment><!-- Refferers --></f:comment>
  51. <f:render partial="ReportCard"
  52. arguments="{title: 'Origines', id: 'visitsRefferers',
  53. module: 'Referrers', action: 'getAll',
  54. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  55. <f:comment><!-- By web-browsers --></f:comment>
  56. <f:render partial="ReportCard"
  57. arguments="{title: 'DevicesDetection', id: 'getBrowsers',
  58. module: 'Referrers', action: 'getAll',
  59. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  60. </div>
  61. <div class="reportSection">
  62. <f:comment><!-- By page --></f:comment>
  63. <f:render partial="ReportCard"
  64. arguments="{title: 'Pages visitées', id: 'visitsByPage',
  65. module: 'Actions', action: 'getPageUrls', width: '1028',
  66. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  67. </div>
  68. <div class="reportSection">
  69. <f:comment><!-- By entry page --></f:comment>
  70. <f:render partial="ReportCard"
  71. arguments="{title: 'Pages d\'entrée', id: 'visitorsEntryPoints',
  72. module: 'Actions', action: 'getEntryPageUrls',
  73. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  74. <f:comment><!-- By visits duration --></f:comment>
  75. <f:render partial="ReportCard"
  76. arguments="{title: 'Durée des visite', id: 'visitsByDuration',
  77. module: 'VisitorInterest', action: 'getNumberOfVisitsPerVisitDuration',
  78. matomoSiteId: matomoSiteId, matomoToken: matomoToken, date_start: date_start, date_end: date_end}"/>
  79. </div>
  80. <div class="reportFooter">
  81. <f:link.action
  82. action="askForDeactivationConfirmation"
  83. title="select"
  84. id="disableLink"
  85. class="warning"
  86. >
  87. Désactiver le suivi de l'utilisation
  88. </f:link.action>
  89. </div>
  90. </div>
  91. </div>
  92. </f:section>