Plugin Directory

Changeset 3241150


Ignore:
Timestamp:
02/16/2025 02:14:10 AM (11 months ago)
Author:
iyzico
Message:

+new version 3.5.13

Location:
iyzico-woocommerce
Files:
854 added
3 edited

Legend:

Unmodified
Added
Removed
  • iyzico-woocommerce/trunk/includes/Core/Plugin.php

    r3241145 r3241150  
    136136    }
    137137
    138     public function upgrader_process_complete( $upgrader, $hook_extra ) {
     138    public static function upgrader_process_complete($upgrader, $hook_extra)
     139    {
     140        if ($upgrader instanceof Plugin_Upgrader && false === $upgrader->bulk && array_key_exists('plugin', $hook_extra) && IYZICO_PLUGIN_BASENAME === $hook_extra['plugin']) {
     141            self::databaseUpdate();
     142        }
    139143
    140         if ( $upgrader instanceof Plugin_Upgrader && false === $upgrader->bulk && array_key_exists( 'plugin', $hook_extra ) && IYZICO_PLUGIN_BASENAME === $hook_extra['plugin'] ) {
    141             call_user_func( array( $this, 'databaseUpdate' ) );
    142         }
    143 
    144         if ( $upgrader instanceof Plugin_Upgrader && true === $upgrader->bulk && array_key_exists( 'plugins', $hook_extra ) && in_array( IYZICO_PLUGIN_BASENAME, $hook_extra['plugins'], true ) ) {
    145             call_user_func( array( $this, 'databaseUpdate' ) );
    146         }
    147     }
     144        if ($upgrader instanceof Plugin_Upgrader && true === $upgrader->bulk && array_key_exists('plugins', $hook_extra) && in_array(IYZICO_PLUGIN_BASENAME, $hook_extra['plugins'], true)) {
     145            self::databaseUpdate();
     146        }
     147    }
    148148}
  • iyzico-woocommerce/trunk/readme.txt

    r3241145 r3241150  
    5858
    5959== Changelog ==
     60
     61= 3.5.13 =
     62  * Fix : Table migration
    6063
    6164= 3.5.12 =
     
    228231== Changelog ==
    229232
     233= 3.5.13 =
     234  * Fix : Table migration
     235
    230236= 3.5.12 =
    231237  * Fix : Table migration
  • iyzico-woocommerce/trunk/woocommerce-gateway-iyzico.php

    r3241145 r3241150  
    1313 * Plugin URI: https://wordpress.org/plugins/iyzico-woocommerce
    1414 * Description: iyzico Payment Gateway for WooCommerce.
    15  * Version: 3.5.12
     15 * Version: 3.5.13
    1616 * Requires at least: 6.6.2
    1717 * WC requires at least: 9.3.3
     
    3737 * These constants are used to define the plugin version, base file, path, url and language path.
    3838 */
    39 const IYZICO_PLUGIN_VERSION = '3.5.12';
    40 const IYZICO_DB_VERSION = '1.0.0';
     39const IYZICO_PLUGIN_VERSION = '3.5.13';
     40const IYZICO_DB_VERSION = '1.0.1';
    4141const PLUGIN_BASEFILE = __FILE__;
    4242
Note: See TracChangeset for help on using the changeset viewer.