uninstall.php 688 字节
<?php
/**
 * Prisna WP Translate
 * http://www.prisna.net/
 *
 * LICENSE
 *
 * @package    Prisna WP Translate
 * @copyright  Copyright (c) 2017, Prisna Ltd, www.prisna.net
 * @license    http://www.prisna.net/license/
 * @version    1.11
 * @date       2017-05-03
 */

class PrisnaWPTranslateUninstall { 
 
 	public static function run() {
		
		require_once dirname(__FILE__) . '/classes/classes.php';
		
		$name = PrisnaWPTranslateConfig::getDbSettingsName();
		$name_cache = PrisnaWPTranslateConfig::getDbCacheWritableName();
		
		if (get_option($name))
			delete_option($name);

		if (get_option($name_cache))
			delete_option($name_cache);

	}
	
}

PrisnaWPTranslateUninstall::run();