PluginProbe
HTTP Headers / 1.13.2
HTTP Headers v1.13.2
1.19.5 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.12.0 1.12.1 1.12.2 1.13.0 1.13.1 1.13.2 1.13.3 1.13.4 1.14.0 1.14.1 1.14.2 1.15.0 All 60 releases
http-headers / uninstall.php

uninstall.php in HTTP Headers 1.13.2, at uninstall.php

12 lines 261 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // If uninstall is not called from WordPress, exit
3 if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
4 exit();
5 }
6
7 $options = include dirname(__FILE__) . '/views/includes/options.inc.php';
8
9 foreach ($options as $option)
10 {
11 delete_option( $option[0] );
12 }