| Server IP : 104.21.21.239 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/mitzvahm/public_html/wp-content/plugins/simple-history/ |
Upload File : |
<?php
/**
* Plugin Name: Simple History
* Plugin URI: http://simple-history.com
* Text Domain: simple-history
* Domain Path: /languages
* Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
* Version: 2.43.0
* Author: Pär Thernström
* Author URI: http://simple-history.com/
* License: GPL2
* GitHub Plugin URI: https://github.com/bonny/WordPress-Simple-History
*
* @package Simple History
*/
/**
* Copyright 2015 Pär Thernström (email: [email protected])
* 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
*/
if (!defined('WPINC')) {
die();
}
// Plugin requires at least WordPress version "4.5.1", because usage of functions like wp_get_raw_referer.
// true if version ok, false if too old version.
$ok_wp_version = version_compare($GLOBALS['wp_version'], '5.2', '>=');
$ok_php_version = version_compare(phpversion(), '5.6', '>=');
if ($ok_php_version && $ok_wp_version) {
/**
* Register function that is called when plugin is installed
*
* @TODO: make activation multi site aware, as in https://github.com/scribu/wp-proper-network-activation
* register_activation_hook( trailingslashit(WP_PLUGIN_DIR) . trailingslashit( plugin_basename(__DIR__) ) . "index.php" , array("SimpleHistory", "on_plugin_activate" ) );
*/
define('SIMPLE_HISTORY_VERSION', '2.43.0');
define('SIMPLE_HISTORY_PATH', plugin_dir_path(__FILE__));
define('SIMPLE_HISTORY_BASENAME', plugin_basename(__FILE__));
define('SIMPLE_HISTORY_DIR_URL', plugin_dir_url(__FILE__));
define('SIMPLE_HISTORY_FILE', __FILE__);
/** Load required files */
require_once __DIR__ . '/inc/SimpleHistory.php';
require_once __DIR__ . '/inc/SimpleHistoryLogQuery.php';
require_once __DIR__ . '/inc/helpers.php';
/** Boot up */
SimpleHistory::get_instance();
} else {
// User is running to old version of php, add admin notice about that.
require_once __DIR__ . '/inc/oldversions.php';
add_action('admin_notices', 'simple_history_old_version_admin_notice');
} // End if().