![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/anfangola.com/wp-content/plugins/matomo/classes/WpMatomo/ |
<?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; use Piwik\Application\Environment; use Piwik\FrontController; if ( ! defined( 'ABSPATH' ) ) { exit; // if accessed directly } /** * piwik constants * phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound */ class Bootstrap { /** * Tests only * * @var bool|null */ private static $assume_not_bootstrapped; private static $bootstrapped_by_wordpress = false; private static $are_incompatible_plugins_filtered = false; /** * Tests only * * @internal * @ignore */ public static function set_not_bootstrapped() { self::$assume_not_bootstrapped = true; self::$bootstrapped_by_wordpress = false; } public static function was_bootstrapped_by_wordpress() { return self::$bootstrapped_by_wordpress; } public function bootstrap() { if ( self::is_bootstrapped() ) { return; } self::$bootstrapped_by_wordpress = true; self::$assume_not_bootstrapped = false; // we need to unset it again to prevent recursion if ( ! self::$are_incompatible_plugins_filtered ) { matomo_filter_incompatible_plugins( $GLOBALS['MATOMO_PLUGINS_ENABLED'] ); self::$are_incompatible_plugins_filtered = true; } if ( ! defined( 'PIWIK_ENABLE_DISPATCH' ) ) { define( 'PIWIK_ENABLE_DISPATCH', false ); } // prevent session related errors during install making it more stable if ( ! defined( 'PIWIK_ENABLE_SESSION_START' ) ) { define( 'PIWIK_ENABLE_SESSION_START', false ); } if ( ! defined( 'PIWIK_DOCUMENT_ROOT' ) ) { define( 'PIWIK_DOCUMENT_ROOT', plugin_dir_path( MATOMO_ANALYTICS_FILE ) . 'app' ); } require_once PIWIK_DOCUMENT_ROOT . '/bootstrap.php'; if ( ! defined( 'PIWIK_INCLUDE_PATH' ) ) { define( 'PIWIK_INCLUDE_PATH', PIWIK_DOCUMENT_ROOT ); } require_once PIWIK_INCLUDE_PATH . '/core/bootstrap.php'; // we need to install now include_once 'Db/WordPress.php'; $environment = new Environment( null ); $environment->init(); FrontController::unsetInstance(); $controller = FrontController::getInstance(); $controller->init(); add_action( 'set_current_user', function () { $access = \Piwik\Access::getInstance(); if ( $access ) { $access->reloadAccess(); } } ); } public static function is_bootstrapped() { if ( true === self::$assume_not_bootstrapped ) { return false; } return defined( 'PIWIK_DOCUMENT_ROOT' ); } /** * @api */ public static function do_bootstrap() { $bootstrap = new Bootstrap(); $bootstrap->bootstrap(); } }