uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
wp-content
/
plugins
/
charitable
/
includes
/
upgrades
/
charitable-upgrade-hooks.php
/
/
<?php /** * Charitable Upgrade Hooks. * * Action/filter hooks used for Charitable Upgrades. * * @package Charitable/Functions/Upgrades * @author David Bisset * @copyright Copyright (c) 2023, WP Charitable LLC * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.3.0 * @version 1.5.0 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Check if there is an upgrade that needs to happen and if so, display a notice to begin upgrading. * * @see Charitable_Upgrade::add_upgrade_notice() */ add_action( 'admin_notices', array( Charitable_Upgrade::get_instance(), 'add_upgrade_notice' ) ); /** * Perform upgrades that don't require a prompt. * * @see Charitable_Upgrade::do_immediate_upgrades() */ add_action( 'init', array( Charitable_Upgrade::get_instance(), 'do_immediate_upgrades' ), 5 ); /** * Register the admin page. * * @see Charitable_Upgrade_Page::register_page() */ add_action( 'admin_menu', array( Charitable_Upgrade_Page::get_instance(), 'register_page' ) ); /** * Hide the admin page from the menu. * * @see Charitable_Upgrade_Page::remove_page_from_menu() */ add_action( 'admin_head', array( Charitable_Upgrade_Page::get_instance(), 'remove_page_from_menu' ) ); /** * Update the upgrade system. * * @see Charitable_Upgrade::update_upgrade_system() */ add_action( 'charitable_update_upgrade_system', array( Charitable_Upgrade::get_instance(), 'update_upgrade_system' ) ); /** * Run the upgrade for 1.3.0. * * @see Charitable_Upgrade::upgrade_1_3_0_fix_gmt_dates() */ add_action( 'charitable_fix_donation_dates', array( Charitable_Upgrade::get_instance(), 'fix_donation_dates' ) ); /** * Remove duplicate donors. * * @see Charitable_Upgrade::remove_duplicate_donors() */ add_action( 'charitable_remove_duplicate_donors', array( Charitable_Upgrade::get_instance(), 'remove_duplicate_donors' ) ); /** * Upgrade the database tables. * * @see Charitable_Upgrade::upgrade_donor_tables() */ add_action( 'charitable_upgrade_donor_tables', array( Charitable_Upgrade::get_instance(), 'upgrade_donor_tables' ) ); /** * Fix up donations missing donor IDs. * * @see Charitable_Upgrade::fix_empty_donor_ids() */ add_action( 'charitable_fix_empty_donor_ids', array( Charitable_Upgrade::get_instance(), 'fix_empty_donor_ids' ) ); /** * ???? * * @see Charitable_Upgrade::create_activity_tables() */ add_action( 'charitable_create_activity_tables', array( Charitable_Upgrade::get_instance(), 'create_activity_tables' ) );
/home/batcwwjx/www/wp-content/plugins/charitable/includes/upgrades/charitable-upgrade-hooks.php