✏️ 正在编辑: burst.php
路径:
/home/eblama1/mintawon.farm/wp-content/plugins/burst-statistics/burst.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Plugin Name: Burst Statistics - Privacy-Friendly Analytics for WordPress * Plugin URI: https://www.wordpress.org/plugins/burst-statistics * Description: Get detailed insights into visitors’ behavior with Burst Statistics, the privacy-friendly analytics dashboard. * Version: 3.5.0 * Requires at least: 6.6 * Requires PHP: 8.0 * Text Domain: burst-statistics * Domain Path: /languages * Author: Burst Statistics - Stats & Analytics for WordPress * Author URI: https://burst-statistics.com * License: GPL v2 or later * License URI: https://www.gnu.org/licenses/gpl-2.0.html */ /* Copyright 2023 Burst BV (email : support@burst-statistics.com) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ namespace Burst; use Burst\Admin\Capability\Capability; defined( 'ABSPATH' ) || die(); if ( defined( 'BURST_PRO_FILE' ) ) { return; } try { define( 'BURST_FREE_FILE', __FILE__ ); require_once __DIR__ . '/includes/autoload.php'; if ( ! function_exists( '\Burst\burst_loader' ) ) { require_once __DIR__ . '/includes/functions.php'; require_once __DIR__ . '/includes/class-compatibility.php'; /** * Get the Burst instance */ function burst_loader(): Burst { return Burst::instance(); } } add_action( 'plugins_loaded', static function () { // creates/returns the singleton; constructor registers hooks. burst_loader(); }, 1 ); if ( ! function_exists( '\Burst\burst_on_activation' ) ) { /** * Set an activation time stamp * This function has te have a different name, to ensure that it runs and deactivates free, if required. */ function burst_on_activation(): void { Bootstrap::on_activation( false ); } register_activation_hook( __FILE__, '\Burst\burst_on_activation' ); } if ( ! function_exists( '\Burst\burst_clear_scheduled_hooks' ) && ! function_exists( 'burst_clear_scheduled_hooks' ) ) { /** * Clear scheduled hooks */ function burst_clear_scheduled_hooks(): void { wp_clear_scheduled_hook( 'burst_every_hour' ); wp_clear_scheduled_hook( 'burst_daily' ); wp_clear_scheduled_hook( 'burst_weekly' ); } register_deactivation_hook( __FILE__, '\Burst\burst_clear_scheduled_hooks' ); } } catch ( \Throwable $e ) { $burst_message = $e->getMessage(); // phpcs:ignore error_log( 'Burst could not load, due to error: ' . $burst_message . ' in ' . $e->getFile() . ' on line ' . $e->getLine() ); update_option( 'burst_php_error_time', time() ); $burst_count = get_option( 'burst_php_error_count', 0 ) + 1; update_option( 'burst_php_error_count', $burst_count ); $burst_existing_errors = get_option( 'burst_php_error_detected', '' ); if ( strpos( $burst_existing_errors, $burst_message ) === false ) { $burst_existing_errors .= $burst_message . ' in ' . $e->getFile() . ' on line ' . $e->getLine() . PHP_EOL; update_option( 'burst_php_error_detected', $burst_existing_errors ); } add_action( 'admin_notices', function () { echo '<div class="notice notice-error">'; echo '<h3>Urgent action required</h3>'; echo '<p>Burst can not load due to the following error:<br>' . esc_html( str_replace( PHP_EOL, '<br>', get_option( 'burst_php_error_detected', '' ) ) ) . '</p>'; echo '</div>'; } ); }
💾 保存文件
← 返回文件管理器