Plugin Directory

Changeset 2746441


Ignore:
Timestamp:
06/22/2022 01:04:31 PM (4 years ago)
Author:
integrai
Message:

Update to version 1.0.23 from GitHub

Location:
integrai
Files:
2 deleted
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • integrai/tags/1.0.23/includes/class-integrai-deactivator.php

    r2558201 r2746441  
    22
    33include_once INTEGRAI__PLUGIN_DIR . 'includes/class-integrai-helpers.php';
    4 include_once INTEGRAI__PLUGIN_DIR . 'includes/class-integrai-uninstall.php';
    54
    65class Integrai_Deactivator {
  • integrai/tags/1.0.23/includes/class-integrai.php

    r2746432 r2746441  
    2929            $this->version = INTEGRAI_VERSION;
    3030        } else {
    31             $this->version = '1.0.22';
     31            $this->version = '1.0.23';
    3232        }
    3333        $this->Integrai = 'integrai';
  • integrai/tags/1.0.23/integrai.php

    r2746432 r2746441  
    1717 * Plugin URI:        https://github.com/integrai/woocommerce
    1818 * Description:       Integração com os principais meios de pagamento e cálculo de frete para a sua plataforma de e-commerce WP WooCommerce.
    19  * Version:           1.0.22
     19 * Version:           1.0.23
    2020 * Author:            Integrai
    2121 * Author URI:        https://integrai.com.br
     
    3939 * Rename this for your plugin and update it as you release new versions.
    4040 */
    41 if ( ! defined( 'INTEGRAI__PLUGIN_DIR' ) ) define( 'INTEGRAI_VERSION', '1.0.22' );
     41if ( ! defined( 'INTEGRAI__PLUGIN_DIR' ) ) define( 'INTEGRAI_VERSION', '1.0.23' );
    4242if ( ! defined( 'INTEGRAI__PLUGIN_DIR' ) ) define( 'INTEGRAI__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    4343
  • integrai/tags/1.0.23/readme.txt

    r2746432 r2746441  
    66Requires PHP: 5.6
    77Tested up to: 5.7
    8 Stable tag: 1.0.22
     8Stable tag: 1.0.23
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • integrai/tags/1.0.23/uninstall.php

    r2558201 r2746441  
    55}
    66
    7 Integrai_Uninstall::uninstall();
     7// delete database table
     8global $wpdb;
     9$table_name = $wpdb->prefix .'integrai_config';
     10$wpdb->query("DROP TABLE IF EXISTS {$table_name}");
     11
     12$table_name = $wpdb->prefix . 'integrai_process_events';
     13$wpdb->query("DROP TABLE IF EXISTS {$table_name}");
     14
     15$table_name = $wpdb->prefix . 'integrai_events';
     16$wpdb->query("DROP TABLE IF EXISTS {$table_name}");
  • integrai/trunk/includes/class-integrai-deactivator.php

    r2558201 r2746441  
    22
    33include_once INTEGRAI__PLUGIN_DIR . 'includes/class-integrai-helpers.php';
    4 include_once INTEGRAI__PLUGIN_DIR . 'includes/class-integrai-uninstall.php';
    54
    65class Integrai_Deactivator {
  • integrai/trunk/includes/class-integrai.php

    r2746432 r2746441  
    2929            $this->version = INTEGRAI_VERSION;
    3030        } else {
    31             $this->version = '1.0.22';
     31            $this->version = '1.0.23';
    3232        }
    3333        $this->Integrai = 'integrai';
  • integrai/trunk/integrai.php

    r2746432 r2746441  
    1717 * Plugin URI:        https://github.com/integrai/woocommerce
    1818 * Description:       Integração com os principais meios de pagamento e cálculo de frete para a sua plataforma de e-commerce WP WooCommerce.
    19  * Version:           1.0.22
     19 * Version:           1.0.23
    2020 * Author:            Integrai
    2121 * Author URI:        https://integrai.com.br
     
    3939 * Rename this for your plugin and update it as you release new versions.
    4040 */
    41 if ( ! defined( 'INTEGRAI__PLUGIN_DIR' ) ) define( 'INTEGRAI_VERSION', '1.0.22' );
     41if ( ! defined( 'INTEGRAI__PLUGIN_DIR' ) ) define( 'INTEGRAI_VERSION', '1.0.23' );
    4242if ( ! defined( 'INTEGRAI__PLUGIN_DIR' ) ) define( 'INTEGRAI__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    4343
  • integrai/trunk/readme.txt

    r2746432 r2746441  
    66Requires PHP: 5.6
    77Tested up to: 5.7
    8 Stable tag: 1.0.22
     8Stable tag: 1.0.23
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • integrai/trunk/uninstall.php

    r2558201 r2746441  
    55}
    66
    7 Integrai_Uninstall::uninstall();
     7// delete database table
     8global $wpdb;
     9$table_name = $wpdb->prefix .'integrai_config';
     10$wpdb->query("DROP TABLE IF EXISTS {$table_name}");
     11
     12$table_name = $wpdb->prefix . 'integrai_process_events';
     13$wpdb->query("DROP TABLE IF EXISTS {$table_name}");
     14
     15$table_name = $wpdb->prefix . 'integrai_events';
     16$wpdb->query("DROP TABLE IF EXISTS {$table_name}");
Note: See TracChangeset for help on using the changeset viewer.