PluginProbe ʕ •ᴥ•ʔ
SVG Support / 2.5.16
SVG Support v2.5.16
2.5.15 2.5.16 2.5.10 2.5.11 2.5.12 2.5.13 2.5.14 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.5.8 2.5.9 trunk 1.0 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.2 2.2.1 2.2.2 2.2.3 2.2.3.1 2.2.3.2 2.2.4 2.2.5 2.3 2.3.1 2.3.10 2.3.11 2.3.12 2.3.13 2.3.14 2.3.15 2.3.16 2.3.17 2.3.18 2.3.19 2.3.2 2.3.20 2.3.21 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4 2.4.1 2.4.2 2.5 2.5.1
svg-support / uninstall.php
svg-support Last commit date
admin 4 days ago css 3 years ago functions 4 days ago includes 1 year ago integrations 1 year ago js 1 year ago languages 8 years ago vendor 4 days ago readme.txt 4 days ago svg-support.php 4 days ago svg-support.png 8 years ago uninstall.php 1 year ago
uninstall.php
15 lines
1 <?php if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
2 exit;
3 }
4
5 $bodhi_options_on_deletion = get_option( 'bodhi_svgs_settings' );
6
7 if ( isset($bodhi_options_on_deletion[ 'del_plugin_data' ]) && $bodhi_options_on_deletion[ 'del_plugin_data' ] === 'on' ) {
8 // Delete plugin options
9 delete_option( 'bodhi_svgs_plugin_version' );
10 delete_option( 'bodhi_svgs_settings' );
11
12 // Delete all post meta related to SVG Support
13 global $wpdb;
14 $wpdb->delete($wpdb->postmeta, array('meta_key' => 'inline_featured_image'));
15 }