mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-22 22:06:09 +01:00
Daniel Siepmann
f3d69eed45
Allow integrator to limit results in widget to certain languages. If only one language is allowed, labels will be translated. Otherwise default system language is used. E.g. one record will be displayed in multiple languages, it would be confusing to show him multiple times for each language. Add TYPO3 extension for phpstan as many things would break within tests. Relates: #15
67 lines
2 KiB
ReStructuredText
67 lines
2 KiB
ReStructuredText
.. php:namespace:: DanielSiepmann\Tracking\Dashboard\Provider
|
|
.. program:: DanielSiepmann\Tracking\Dashboard\Provider\PageviewsPerDay
|
|
|
|
.. _pageviewsperday:
|
|
|
|
===============
|
|
PageviewsPerDay
|
|
===============
|
|
|
|
Provides the total page calls on the last x days.
|
|
This way editors can see how many total requests were made at specific dates.
|
|
|
|
Example
|
|
=======
|
|
|
|
.. figure:: /Images/Widgets/PageviewsPerDay.png
|
|
:align: center
|
|
|
|
Default widget configuration.
|
|
|
|
:file:`Configuration/Services.yaml`::
|
|
|
|
services:
|
|
DanielSiepmann\Tracking\Dashboard\Provider\PageviewsPerDay:
|
|
arguments:
|
|
$queryBuilder: '@querybuilder.tx_tracking_pageview'
|
|
$pagesToExclude: [1, 11, 38]
|
|
|
|
dashboard.widget.danielsiepmann.tracking.pageViewsPerDay:
|
|
class: 'TYPO3\CMS\Dashboard\Widgets\BarChartWidget'
|
|
arguments:
|
|
$view: '@dashboard.views.widget'
|
|
$dataProvider: '@DanielSiepmann\Tracking\Dashboard\Provider\PageviewsPerDay'
|
|
tags:
|
|
- name: 'dashboard.widget'
|
|
identifier: 'pageViewsBar'
|
|
groupNames: 'tracking'
|
|
iconIdentifier: 'content-widget-chart-bar'
|
|
title: 'LLL:EXT:tracking/Resources/Private/Language/locallang.xlf:dashboard.widgets.pageViewsBar.title'
|
|
description: 'LLL:EXT:tracking/Resources/Private/Language/locallang.xlf:dashboard.widgets.pageViewsBar.description'
|
|
additionalCssClasses: 'dashboard-item--chart'
|
|
height: 'medium'
|
|
width: 'small'
|
|
|
|
Options
|
|
=======
|
|
|
|
.. option:: $days
|
|
|
|
Integer defining the number of days to respect.
|
|
|
|
Defaults to 31.
|
|
|
|
.. option:: $pagesToExclude
|
|
|
|
Array of page uids that should not be collected.
|
|
Defaults to empty array, all pages are shown.
|
|
|
|
This becomes handy if certain pages are called in order to show specific records.
|
|
In those cases the pages will be called very often but don't provide much benefit and can be excluded.
|
|
Use this in combination with :ref:`recordview` to show the records instead.
|
|
|
|
.. option:: $dateFormat
|
|
|
|
String defining the format used for labels.
|
|
|
|
Defaults to 'Y-m-d'.
|