PluginProbe
Insert Html Snippet / 1.0
Insert Html Snippet v1.0
1.4.6 trunk 1.0 1.0.1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4 1.4.1 1.4.2 1.4.3 All 27 releases
insert-html-snippet / admin / uninstall.php

uninstall.php in Insert Html Snippet 1.0, at admin/uninstall.php

15 lines 249 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 function xyz_ihs_uninstall(){
4
5 global $wpdb;
6
7 delete_option("xyz_ihs_limit");
8
9 /* table delete*/
10 $wpdb->query("DROP TABLE ".$wpdb->prefix."xyz_ihs_short_code");
11
12
13 }
14 register_uninstall_hook(XYZ_INSERT_HTML_PLUGIN_FILE,'xyz_ihs_uninstall');
15 ?>