🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 02:12:54 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
link-factory
📍 /home/eliteewa/public_html/wp-content/plugins/link-factory
🔄 Refresh
✏️
Editing: uninstall.php
Writable
<?php /** * Fires when the Link Factory plugin is deleted via wp-admin. * * Drops the sentences table so a subsequent reinstall starts from a clean slate. * * @package LinkFactory */ if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { return; } global $wpdb; $table_name = $wpdb->prefix . 'link_factory_sentences'; $wpdb->query( "DROP TABLE IF EXISTS {$table_name}" );
💾 Save Changes
❌ Cancel