PluginProbe ʕ •ᴥ•ʔ
Matomo Analytics – Powerful, Privacy-First Insights for WordPress / 1.3.1
Matomo Analytics – Powerful, Privacy-First Insights for WordPress v1.3.1
5.11.1 5.11.0 5.10.2 5.10.1 trunk 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.3.2 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.1.0 4.1.1 4.1.2 4.1.3 4.10.0 4.11.0 4.12.0 4.13.0 4.13.2 4.13.3 4.13.4 4.13.5 4.14.0 4.14.1 4.14.2 4.15.0 4.15.1 4.15.2 4.15.3 4.2.0 4.3.0 4.3.1 4.4.1 4.4.2 4.5.0 4.6.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 5.0.8 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.10.0 5.2.0 5.2.1 5.2.2 5.3.0 5.3.1 5.3.2 5.3.3 5.6.0 5.6.1 5.7.0 5.7.1 5.8.0 5.8.1 5.8.2
matomo / classes / WpMatomo / Admin / Summary.php
matomo / classes / WpMatomo / Admin Last commit date
TrackingSettings 5 years ago views 5 years ago AccessSettings.php 6 years ago Admin.php 6 years ago AdminSettings.php 6 years ago AdminSettingsInterface.php 6 years ago AdvancedSettings.php 6 years ago Dashboard.php 6 years ago ExclusionSettings.php 6 years ago GeolocationSettings.php 6 years ago GetStarted.php 6 years ago Info.php 6 years ago Marketplace.php 6 years ago Menu.php 5 years ago PrivacySettings.php 5 years ago SafeModeMenu.php 6 years ago Summary.php 5 years ago SystemReport.php 5 years ago TrackingSettings.php 5 years ago
Summary.php
133 lines
1 <?php
2 /**
3 * Matomo - free/libre analytics platform
4 *
5 * @link https://matomo.org
6 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
7 * @package matomo
8 */
9
10 namespace WpMatomo\Admin;
11
12 use WpMatomo\Capabilities;
13 use WpMatomo\Report\Dates;
14 use WpMatomo\Report\Metadata;
15 use WpMatomo\Report\Renderer;
16 use WpMatomo\Settings;
17
18 if ( ! defined( 'ABSPATH' ) ) {
19 exit; // if accessed directly
20 }
21
22 class Summary {
23
24 const NONCE_DASHBOARD = 'matomo_pin_dashboard';
25
26 /**
27 * @var Settings
28 */
29 private $settings;
30
31 /**
32 * @param Settings $settings
33 */
34 public function __construct( $settings ) {
35 $this->settings = $settings;
36 }
37
38 private function pin_if_submitted() {
39 if ( ! empty( $_GET[ 'pin' ] )
40 && ! empty( $_GET[ 'report_uniqueid' ] )
41 && ! empty( $_GET[ 'report_date' ] )
42 && is_admin()
43 && check_admin_referer( self::NONCE_DASHBOARD )
44 && is_user_logged_in()
45 && current_user_can( Capabilities::KEY_VIEW ) ) {
46 $unique_id = $_GET[ 'report_uniqueid' ];
47 $date = $_GET[ 'report_date' ];
48
49 $dashobard = new Dashboard();
50 if ($dashobard->is_valid_widget($unique_id, $date)) {
51 $dashobard->toggle_widget( $unique_id, $date );
52 return true;
53 }
54 }
55
56 return false;
57 }
58
59 public function show() {
60 $matomo_pinned = $this->pin_if_submitted();
61
62 $settings = $this->settings;
63
64 $reports_to_show = $this->get_reports_to_show();
65 $filter_limit = apply_filters( 'matomo_report_summary_filter_limit', 10 );
66
67 $report_dates_obj = new Dates();
68 $report_dates = $report_dates_obj->get_supported_dates();
69
70 $report_date = Dates::YESTERDAY;
71 if ( isset( $_GET['report_date'] ) && isset( $report_dates[ $_GET['report_date'] ] ) ) {
72 $report_date = $_GET['report_date'];
73 }
74
75 list( $report_period_selected, $report_date_selected ) = $report_dates_obj->detect_period_and_date( $report_date );
76
77 $is_tracking = $this->settings->is_tracking_enabled();
78
79 $matomo_dashboard = new Dashboard();
80
81 $wp_version = get_bloginfo( 'version' );
82 $matomo_is_version_pre55 = empty($wp_version) || version_compare($wp_version, '5.5.0') === -1;
83
84 include dirname( __FILE__ ) . '/views/summary.php';
85 }
86
87 private function get_reports_to_show() {
88 $reports_to_show = array(
89 'VisitsSummary_get',
90 'UserCountry_getCountry',
91 'DevicesDetection_getType',
92 'Resolution_getResolution',
93 'DevicesDetection_getOsFamilies',
94 'DevicesDetection_getBrowsers',
95 'VisitTime_getVisitInformationPerServerTime',
96 'Actions_get',
97 'Actions_getPageTitles',
98 'Actions_getEntryPageTitles',
99 'Actions_getExitPageTitles',
100 'Actions_getDownloads',
101 'Actions_getOutlinks',
102 'Referrers_getAll',
103 'Referrers_getSocials',
104 'Referrers_getCampaigns',
105 'Goals_get',
106 );
107
108 if ( $this->settings->get_global_option( 'track_ecommerce' ) ) {
109 $reports_to_show[] = 'Goals_get_idGoal--ecommerceOrder';
110 $reports_to_show[] = 'Goals_getItemsName';
111 }
112
113 $reports_to_show[] = Renderer::CUSTOM_UNIQUE_ID_VISITS_OVER_TIME;
114 $reports_to_show = apply_filters( 'matomo_report_summary_report_ids', $reports_to_show );
115
116 $report_metadata = array();
117 $metadata = new Metadata();
118 foreach ( $reports_to_show as $report_unique_id ) {
119 $report = $metadata->find_report_by_unique_id( $report_unique_id );
120 if ( $report ) {
121 $report_page = $metadata->find_report_page_params_by_report_metadata( $report );
122 if ( $report_page ) {
123 $report['page'] = $report_page;
124 }
125 $report_metadata[] = $report;
126 }
127 }
128
129 return $report_metadata;
130 }
131
132 }
133