HEX
Server: Apache
System: Linux webd006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: zwafgyp (177615)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/zwafgyp/coolswim/wp-content/plugins/statify/inc/class-statify-deactivate.php
<?php
/**
 * Statify: Statify_Deactivate class
 *
 * This file contains the derived class for the plugin's deactivation actions.
 *
 * @package   Statify
 * @since     1.4.0
 */

// Quit if accessed outside WP context.
defined( 'ABSPATH' ) || exit;

/**
 * Statify_Deactivate
 *
 * @since 1.4.0
 */
class Statify_Deactivate {

	/**
	 * Plugin deactivation actions
	 *
	 * @since    1.4.0
	 * @version  1.4.0
	 */
	public static function init() {

		// Delete transients.
		delete_transient( 'statify_data' );

		// Delete cron event.
		wp_clear_scheduled_hook( 'statify_cleanup' );
	}
}