Plugin Directory

Changeset 3018535


Ignore:
Timestamp:
01/08/2024 04:47:34 AM (2 years ago)
Author:
buzztone
Message:

Release Version 2.6.1

Location:
contact-form-7-skins
Files:
214 added
4 edited

Legend:

Unmodified
Added
Removed
  • contact-form-7-skins/trunk/includes/admin-visual.php

    r2910187 r3018535  
    1010 
    1111Class CF7_Skins_Admin_Visual {
     12
     13    var $nonce;
     14    var $version;
     15    var $url;
     16    var $path;
    1217
    1318    var $dom;
  • contact-form-7-skins/trunk/index.php

    r2910187 r3018535  
    44 * Plugin URI:  http://cf7skins.com
    55 * Description: Adds drag & drop Visual Editor with Templates & Styles to Contact Form 7. Requires Contact Form 7.
    6  * Version:     2.6.0
     6 * Version:     2.6.1
    77 * Author:      Neil Murray
    88 * Author URI:  http://cf7skins.com
     
    1414 * @package cf7skins
    1515 * @author Neil Murray
    16  * @copyright Copyright (c) 2014-2023
     16 * @copyright Copyright (c) 2014-2024
    1717 */
    1818
     
    3131 * @since 0.1.0
    3232 */
    33 define( 'CF7SKINS_VERSION', '2.6.0' );
     33define( 'CF7SKINS_VERSION', '2.6.1' );
    3434define( 'CF7SKINS_OPTIONS', 'cf7skins' ); // Database option names
    3535define( 'CF7SKINS_FEATURE_FILTER', false ); // @since 0.4.0
  • contact-form-7-skins/trunk/readme.txt

    r2952995 r3018535  
    33Tags: contact form 7, contact form 7 addon, contact form 7 style, contact form 7 theme, contact form
    44Requires at least: 4.3
    5 Tested up to: 6.3
    6 Requires PHP: 5.6
    7 Stable tag: 2.6.0
     5Tested up to: 6.4
     6Requires PHP: 7.4
     7Stable tag: 2.6.1
    88Author URI: https://cf7skins.com
    99License: GPLv2 or later
     
    116116
    117117== Changelog ==
     118
     119= 2.6.1 - 2024-01-09 =
     120
     121FIX: Ensure can delete plugin in PHP 8+
    118122
    119123= 2.6.0 - 2023-04-27 =
  • contact-form-7-skins/trunk/uninstall.php

    r1895035 r3018535  
    1616
    1717// Check if user wants to retain plugin data
    18 $option = get_option( CF7SKINS_OPTIONS );  // @previous $option = get_option( 'cf7skins' );
     18$option = get_option( 'cf7skins' );
    1919
    20 if ( isset( $option['delete_data'] ) && $option['delete_data'] ) {
     20if ( !! $option ) {
     21    if ( isset( $option['delete_data'] ) && $option['delete_data'] ) {
    2122
    22     // Delete plugin options from options table
    23     delete_option( 'cf7skins' );
    24     delete_option( 'cf7skins_version_installed' );
    25     delete_option( 'cf7skins_activated' );
    26     delete_option( 'cf7skins_get_version' );
    27     delete_option( 'cf7skins_activation' );
    28     delete_option( 'cf7skins_deactivation' );
    29     delete_option( 'cf7skins_license_status' );
     23        // Delete plugin options from options table
     24        delete_option( 'cf7skins' );
     25        delete_option( 'cf7skins_version_installed' );
     26        delete_option( 'cf7skins_activated' );
     27        delete_option( 'cf7skins_get_version' );
     28        delete_option( 'cf7skins_activation' );
     29        delete_option( 'cf7skins_deactivation' );
     30        delete_option( 'cf7skins_license_status' );
    3031
    31     // Delete all post meta by key from postmeta table
    32     delete_post_meta_by_key( 'cf7s_template' );
    33     delete_post_meta_by_key( 'cf7s_style' );
    34     delete_post_meta_by_key( 'cf7s_postbox' );
     32        // Delete all post meta by key from postmeta table
     33        delete_post_meta_by_key( 'cf7s_template' );
     34        delete_post_meta_by_key( 'cf7s_style' );
     35        delete_post_meta_by_key( 'cf7s_postbox' );
     36    }
    3537}
Note: See TracChangeset for help on using the changeset viewer.