PluginProbe
Performance Lab / 1.2.0
Performance Lab v1.2.0
trunk 1.0.0 1.0.0-beta.1 1.0.0-beta.2 1.0.0-beta.3 1.0.0-rc.1 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 1.8.0 1.9.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0 2.6.1 2.7.0 2.8.0 All 44 releases
performance-lab / uninstall.php

uninstall.php in Performance Lab 1.2.0, at uninstall.php

15 lines 244 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin uninstaller logic.
4 *
5 * @package performance-lab
6 * @since 1.2.0
7 */
8
9 // If uninstall.php is not called by WordPress, bail.
10 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
11 exit;
12 }
13
14 delete_option( 'perflab_modules_settings' );
15