Plugin Directory

Changeset 2527527


Ignore:
Timestamp:
05/06/2021 10:51:09 PM (5 years ago)
Author:
sleekplan
Message:

Update to version 0.2.0 from GitHub

Location:
sleekplan
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • sleekplan/tags/0.2.0/readme.txt

    r2527354 r2527527  
    77Tested up to: 5.7
    88Requires PHP: 5.2
    9 Stable tag: 0.1.9
     9Stable tag: 0.2.0
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090== Changelog ==
    9191
     92= 0.2.0 =
     93* 2021-06-05
     94* Fix deinstallation issue
     95
    9296= 0.1.9 =
    9397* 2021-06-05
  • sleekplan/tags/0.2.0/sleekplan-wordpress.php

    r2527354 r2527527  
    44 * Plugin URI:        https://sleekplan.com/
    55 * Description:       Handle the basics with this plugin.
    6  * Version:           0.1.9
     6 * Version:           0.2.0
    77 * Requires at least: 2.0.0
    88 * Tested up to:      5.7.1
     
    6262    wp_enqueue_script( 'wp-color-picker');
    6363}
     64
     65
     66// deactivation hook
     67function slpl_deactivate() {
     68
     69    // remove active product
     70    slpl_set_product();
     71   
     72    // delete data
     73    delete_option( 'sleekplan_data' );
     74
     75}
     76register_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  
    77Tested up to: 5.7
    88Requires PHP: 5.2
    9 Stable tag: 0.1.9
     9Stable tag: 0.2.0
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090== Changelog ==
    9191
     92= 0.2.0 =
     93* 2021-06-05
     94* Fix deinstallation issue
     95
    9296= 0.1.9 =
    9397* 2021-06-05
  • sleekplan/trunk/sleekplan-wordpress.php

    r2527354 r2527527  
    44 * Plugin URI:        https://sleekplan.com/
    55 * Description:       Handle the basics with this plugin.
    6  * Version:           0.1.9
     6 * Version:           0.2.0
    77 * Requires at least: 2.0.0
    88 * Tested up to:      5.7.1
     
    6262    wp_enqueue_script( 'wp-color-picker');
    6363}
     64
     65
     66// deactivation hook
     67function slpl_deactivate() {
     68
     69    // remove active product
     70    slpl_set_product();
     71   
     72    // delete data
     73    delete_option( 'sleekplan_data' );
     74
     75}
     76register_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.