|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /home/www/p141464/html/KMU-CSR-PLANER/wp-content/plugins/modern-polls/ |
Upload File : |
<?php
/********************************************************************
* @plugin ModernPolls
* @file uninstall.php
* @date 15.04.2018
* @author Felix Tzschucke <f.tzschucke@gmail.com>
* @copyright 2018 - 2021 Felix Tzschucke
* @license GPL2
* @version 1.0.6
* @link https://felixtz.de/
********************************************************************/
if (!defined('WP_UNINSTALL_PLUGIN')) exit ();
mpp_uninstall();
function mpp_uninstall()
{
global $wpdb;
$table_names = ['mp_pollinfos', 'mp_polls', 'mp_templates', 'mp_settings', 'mp_locklist'];
if (sizeof($table_names) > 0) {
foreach ($table_names as $table_name) {
$table = $wpdb->prefix . $table_name;
$wpdb->query("DROP TABLE IF EXISTS $table");
}
}
}