PluginProbe
WP-PostRatings / trunk
WP-PostRatings vtrunk
2.0.2 2.0.1 2.0.0 trunk 1.00 1.00beta 1.01 1.02 1.02a 1.03 1.03(wp1.52) 1.04 1.05 1.10 1.11 1.20 1.30 1.31 1.40 1.50 1.65 1.77 1.78 1.79 1.80 All 45 releases
wp-postratings / uninstall.php

uninstall.php in WP-PostRatings trunk, at uninstall.php

19 lines 599 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * WP-PostRatings uninstall.php
4 *
5 * WordPress loads this file, and nothing else of the plugin, when the plugin is
6 * deleted. Everything it does lives beside the installer it undoes, so the two
7 * cannot drift apart and the work is reachable from the test suite.
8 *
9 * @package WP-PostRatings
10 */
11
12 defined( 'WP_UNINSTALL_PLUGIN' ) || exit;
13
14 require_once __DIR__ . '/includes/class-wp-postratings-options.php';
15 require_once __DIR__ . '/includes/class-wp-postratings-settings.php';
16 require_once __DIR__ . '/includes/class-wp-postratings-install.php';
17
18 WP_PostRatings_Install::uninstall();
19