Changeset 2527527
- Timestamp:
- 05/06/2021 10:51:09 PM (5 years ago)
- Location:
- sleekplan
- Files:
-
- 6 edited
- 1 copied
-
tags/0.2.0 (copied) (copied from sleekplan/trunk)
-
tags/0.2.0/readme.txt (modified) (2 diffs)
-
tags/0.2.0/sleekplan-wordpress.php (modified) (2 diffs)
-
tags/0.2.0/uninstall.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/sleekplan-wordpress.php (modified) (2 diffs)
-
trunk/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sleekplan/tags/0.2.0/readme.txt
r2527354 r2527527 7 7 Tested up to: 5.7 8 8 Requires PHP: 5.2 9 Stable tag: 0. 1.99 Stable tag: 0.2.0 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 91 92 = 0.2.0 = 93 * 2021-06-05 94 * Fix deinstallation issue 95 92 96 = 0.1.9 = 93 97 * 2021-06-05 -
sleekplan/tags/0.2.0/sleekplan-wordpress.php
r2527354 r2527527 4 4 * Plugin URI: https://sleekplan.com/ 5 5 * Description: Handle the basics with this plugin. 6 * Version: 0. 1.96 * Version: 0.2.0 7 7 * Requires at least: 2.0.0 8 8 * Tested up to: 5.7.1 … … 62 62 wp_enqueue_script( 'wp-color-picker'); 63 63 } 64 65 66 // deactivation hook 67 function slpl_deactivate() { 68 69 // remove active product 70 slpl_set_product(); 71 72 // delete data 73 delete_option( 'sleekplan_data' ); 74 75 } 76 register_deactivation_hook( __FILE__, 'slpl_deactivate' ); -
sleekplan/tags/0.2.0/uninstall.php
r2326833 r2527527 1 <?php 2 3 // if uninstall.php is not called by WordPress, die 4 if ( ! defined('WP_UNINSTALL_PLUGIN') ) { 5 die; 6 } 7 8 // remove active product 9 slpl_set_product(); 10 11 // delete data 12 delete_option( 'sleekplan_data' ); 1 <?php // Silence is golden -
sleekplan/trunk/readme.txt
r2527354 r2527527 7 7 Tested up to: 5.7 8 8 Requires PHP: 5.2 9 Stable tag: 0. 1.99 Stable tag: 0.2.0 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 91 92 = 0.2.0 = 93 * 2021-06-05 94 * Fix deinstallation issue 95 92 96 = 0.1.9 = 93 97 * 2021-06-05 -
sleekplan/trunk/sleekplan-wordpress.php
r2527354 r2527527 4 4 * Plugin URI: https://sleekplan.com/ 5 5 * Description: Handle the basics with this plugin. 6 * Version: 0. 1.96 * Version: 0.2.0 7 7 * Requires at least: 2.0.0 8 8 * Tested up to: 5.7.1 … … 62 62 wp_enqueue_script( 'wp-color-picker'); 63 63 } 64 65 66 // deactivation hook 67 function slpl_deactivate() { 68 69 // remove active product 70 slpl_set_product(); 71 72 // delete data 73 delete_option( 'sleekplan_data' ); 74 75 } 76 register_deactivation_hook( __FILE__, 'slpl_deactivate' ); -
sleekplan/trunk/uninstall.php
r2326833 r2527527 1 <?php 2 3 // if uninstall.php is not called by WordPress, die 4 if ( ! defined('WP_UNINSTALL_PLUGIN') ) { 5 die; 6 } 7 8 // remove active product 9 slpl_set_product(); 10 11 // delete data 12 delete_option( 'sleekplan_data' ); 1 <?php // Silence is golden
Note: See TracChangeset
for help on using the changeset viewer.