https://t.me/RX1948
Server : Apache
System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64
User : p141464 ( 418825)
PHP Version : 7.4.33.12
Disable Function : NONE
Directory :  /html/KMU-CSR-PLANER/wp-content/plugins/matomo/classes/WpMatomo/Admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //html/KMU-CSR-PLANER/wp-content/plugins/matomo/classes/WpMatomo/Admin/Info.php
<?php
/**
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 * @package matomo
 */

namespace WpMatomo\Admin;

use WpMatomo\Capabilities;

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

class Info implements MatomoPageContent {

	const NONCE_NAME = 'matomo_newsletter';
	const FORM_NAME  = 'matomo_newsletter_signup';

	/**
	 * @var bool
	 */
	private $is_multisite;

	public function __construct( $is_multisite = false ) {
		$this->is_multisite = $is_multisite;
	}

	private function update_if_submitted() {
		if ( isset( $_POST )
			 && ! empty( $_POST[ self::FORM_NAME ] )
			 && is_admin()
			 && check_admin_referer( self::NONCE_NAME )
			 && $this->show_newsletter_signup()
			 && current_user_can( Capabilities::KEY_VIEW ) ) {
			$user   = wp_get_current_user();
			$locale = explode( '_', get_user_locale( $user->ID ) );
			wp_remote_get(
				'https://api.matomo.org/1.0/subscribeNewsletter/?' . http_build_query(
					[
						'email'     => $user->user_email,
						'wordpress' => 1,
						'language'  => $locale[0],
					]
				)
			);
			update_user_meta( $user->ID, self::FORM_NAME, '1' );

			return true;
		}
	}

	private function show_newsletter_signup() {
		if ( ! is_user_logged_in() ) {
			return false;
		}

		$user = wp_get_current_user();

		return ! get_user_meta( $user->ID, self::FORM_NAME, true );
	}

	public function show() {
		$this->render( 'info' );
	}

	public function show_multisite() {
		$this->render( 'info_multisite' );
	}

	private function render( $template ) {
		$signedup_newsletter = $this->update_if_submitted();
		$show_newsletter     = $this->show_newsletter_signup();

		include dirname( __FILE__ ) . '/views/' . $template . '.php';
	}

	public function get_title() {
		return $this->is_multisite
			? __( 'Matomo Analytics in Multi Site mode', 'matomo' )
			: __( 'How can we help?', 'matomo' );
	}
}

https://t.me/RX1948 - 2025