PHP 7.4.33
Preview: uninstall.php Size: 503 B
/home/zcziejy/ryadselyen/contact-form-7/uninstall.php
<?php

if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit();
}

function wpcf7_delete_plugin() {
	global $wpdb;

	delete_option( 'wpcf7' );

	$posts = get_posts(
		array(
			'numberposts' => -1,
			'post_type' => 'wpcf7_contact_form',
			'post_status' => 'any',
		)
	);

	foreach ( $posts as $post ) {
		wp_delete_post( $post->ID, true );
	}

	$wpdb->query( sprintf(
		"DROP TABLE IF EXISTS %s",
		$wpdb->prefix . 'contact_form_7'
	) );
}

if ( ! defined( 'WPCF7_VERSION' ) ) {
	wpcf7_delete_plugin();
}

Directory Contents

Dirs: 5 × Files: 6
Name Size Perms Modified Actions
admin DIR
- drwxr-xr-x 2026-01-23 01:26:05
Edit Download
assets DIR
- drwxr-xr-x 2026-01-23 01:26:05
Edit Download
includes DIR
- drwxr-xr-x 2026-01-23 01:26:05
Edit Download
languages DIR
- drwxr-xr-x 2026-01-23 01:26:05
Edit Download
modules DIR
- drwxr-xr-x 2026-01-23 16:33:46
Edit Download
420 B lrw-r--r-- 2026-01-09 04:01:54
Edit Download
18.70 KB lrw-r--r-- 2023-11-20 18:20:30
Edit Download
5.67 KB lrw-r--r-- 2023-11-20 18:20:30
Edit Download
5.04 KB lrw-r--r-- 2023-11-20 18:20:30
Edit Download
503 B lrw-r--r-- 2023-11-20 18:20:30
Edit Download
1.85 KB lrw-r--r-- 2023-11-20 18:20:30
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).