本文整理汇总了PHP中wfConfig::updateTableExists方法的典型用法代码示例。如果您正苦于以下问题:PHP wfConfig::updateTableExists方法的具体用法?PHP wfConfig::updateTableExists怎么用?PHP wfConfig::updateTableExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wfConfig
的用法示例。
在下文中一共展示了wfConfig::updateTableExists方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: uninstallPlugin
public static function uninstallPlugin()
{
//Check if caching is enabled and if it is, disable it and fix the .htaccess file.
$cacheType = wfConfig::get('cacheType', false);
if ($cacheType == 'falcon') {
wfCache::addHtaccessCode('remove');
wfCache::updateBlockedIPs('remove');
wfConfig::set('cacheType', false);
//We currently don't clear the cache when plugin is disabled because it will take too long if done synchronously and won't work because plugin is disabled if done asynchronously.
//wfCache::scheduleCacheClear();
} else {
if ($cacheType == 'php') {
wfConfig::set('cacheType', false);
}
}
//Used by MU code below
update_option('wordfenceActivated', 0);
wp_clear_scheduled_hook('wordfence_daily_cron');
wp_clear_scheduled_hook('wordfence_hourly_cron');
wp_clear_scheduled_hook('wordfence_daily_autoUpdate');
//Remove old legacy cron job if it exists
wp_clear_scheduled_hook('wordfence_scheduled_scan');
//Remove all scheduled scans.
self::unscheduleAllScans();
// Remove cron for email summary
wfActivityReport::clearCronJobs();
// Remove the admin user list so it can be regenerated if Wordfence is reactivated.
wfConfig::set_ser('adminUserList', false);
if (!WFWAF_SUBDIRECTORY_INSTALL) {
wfWAFConfig::set('wafDisabled', true);
}
if (wfConfig::get('deleteTablesOnDeact')) {
$schema = new wfSchema();
$schema->dropAll();
wfConfig::updateTableExists();
foreach (array('wordfence_version', 'wordfenceActivated') as $opt) {
delete_option($opt);
}
if (!WFWAF_SUBDIRECTORY_INSTALL) {
try {
if (WFWAF_AUTO_PREPEND) {
$helper = new wfWAFAutoPrependHelper();
if ($helper->uninstall()) {
wfWAF::getInstance()->uninstall();
}
} else {
wfWAF::getInstance()->uninstall();
}
} catch (wfWAFStorageFileException $e) {
error_log($e->getMessage());
}
}
}
}