Plugin Directory

Changeset 3491997


Ignore:
Timestamp:
03/26/2026 04:54:02 PM (7 days ago)
Author:
durasi
Message:

v6.0.4: Welcome screen with 5-step setup wizard

Location:
api-isarud
Files:
4 added
3 edited
9 copied

Legend:

Unmodified
Added
Removed
  • api-isarud/tags/6.0.4/api-isarud.php

    r3491938 r3491997  
    44 * Plugin URI: https://isarud.com/integrations
    55 * Description: Yaptırım tarama + Trendyol, Hepsiburada, N11, Amazon, Pazarama, Etsy API entegrasyonu + sipariş yönetimi + iade + fatura + müşteri soruları + marka arama. %100 ücretsiz.
    6  * Version: 6.0.3
     6 * Version: 6.0.4
    77 * Requires at least: 6.0
    88 * Tested up to: 6.9
     
    1717if (!defined('ABSPATH')) exit;
    1818
    19 define('ISARUD_VERSION', '6.0.3');
     19define('ISARUD_VERSION', '6.0.4');
    2020define('ISARUD_DIR', plugin_dir_path(__FILE__));
    2121define('ISARUD_URL', plugin_dir_url(__FILE__));
     
    4545require_once ISARUD_DIR . 'includes/class-isarud-einvoice.php';
    4646require_once ISARUD_DIR . 'includes/class-isarud-upsell.php';
     47require_once ISARUD_DIR . 'includes/class-isarud-welcome.php';
    4748
    4849
     
    6263register_activation_hook(__FILE__, function() {
    6364    global $wpdb;
     65    Isarud_Welcome::on_activate();
    6466    $charset = $wpdb->get_charset_collate();
    6567    require_once ABSPATH . 'wp-admin/includes/upgrade.php';
     
    337339        add_submenu_page('isarud', 'E-Fatura', __('E-Fatura', 'api-isarud'), 'manage_options', 'isarud-einvoice', [$this, 'page_einvoice']);
    338340        add_submenu_page('isarud', 'Cross-sell & Upsell', __('Cross-sell & Upsell', 'api-isarud'), 'manage_options', 'isarud-upsell', [$this, 'page_upsell']);
     341        add_submenu_page('isarud', 'Hosgeldiniz', __('Hosgeldiniz', 'api-isarud'), 'manage_options', 'isarud-welcome', [$this, 'page_welcome']);
    339342    }
    340343
     
    16321635        include ISARUD_DIR . 'includes/upsell-html.php';
    16331636    }
     1637
     1638    public function page_welcome() {
     1639        include ISARUD_DIR . 'includes/welcome-html.php';
     1640    }
    16341641}
    16351642
  • api-isarud/tags/6.0.4/readme-tr_TR.txt

    r3491938 r3491997  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 6.0.3
     7Stable tag: 6.0.4
    88License: GPLv2 or later
    99
  • api-isarud/tags/6.0.4/readme.txt

    r3491938 r3491997  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 6.0.3
     7Stable tag: 6.0.4
    88License: GPLv2 or later
    99
  • api-isarud/trunk/api-isarud.php

    r3491938 r3491997  
    44 * Plugin URI: https://isarud.com/integrations
    55 * Description: Yaptırım tarama + Trendyol, Hepsiburada, N11, Amazon, Pazarama, Etsy API entegrasyonu + sipariş yönetimi + iade + fatura + müşteri soruları + marka arama. %100 ücretsiz.
    6  * Version: 6.0.3
     6 * Version: 6.0.4
    77 * Requires at least: 6.0
    88 * Tested up to: 6.9
     
    1717if (!defined('ABSPATH')) exit;
    1818
    19 define('ISARUD_VERSION', '6.0.3');
     19define('ISARUD_VERSION', '6.0.4');
    2020define('ISARUD_DIR', plugin_dir_path(__FILE__));
    2121define('ISARUD_URL', plugin_dir_url(__FILE__));
     
    4545require_once ISARUD_DIR . 'includes/class-isarud-einvoice.php';
    4646require_once ISARUD_DIR . 'includes/class-isarud-upsell.php';
     47require_once ISARUD_DIR . 'includes/class-isarud-welcome.php';
    4748
    4849
     
    6263register_activation_hook(__FILE__, function() {
    6364    global $wpdb;
     65    Isarud_Welcome::on_activate();
    6466    $charset = $wpdb->get_charset_collate();
    6567    require_once ABSPATH . 'wp-admin/includes/upgrade.php';
     
    337339        add_submenu_page('isarud', 'E-Fatura', __('E-Fatura', 'api-isarud'), 'manage_options', 'isarud-einvoice', [$this, 'page_einvoice']);
    338340        add_submenu_page('isarud', 'Cross-sell & Upsell', __('Cross-sell & Upsell', 'api-isarud'), 'manage_options', 'isarud-upsell', [$this, 'page_upsell']);
     341        add_submenu_page('isarud', 'Hosgeldiniz', __('Hosgeldiniz', 'api-isarud'), 'manage_options', 'isarud-welcome', [$this, 'page_welcome']);
    339342    }
    340343
     
    16321635        include ISARUD_DIR . 'includes/upsell-html.php';
    16331636    }
     1637
     1638    public function page_welcome() {
     1639        include ISARUD_DIR . 'includes/welcome-html.php';
     1640    }
    16341641}
    16351642
  • api-isarud/trunk/readme-tr_TR.txt

    r3491938 r3491997  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 6.0.3
     7Stable tag: 6.0.4
    88License: GPLv2 or later
    99
  • api-isarud/trunk/readme.txt

    r3491938 r3491997  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 6.0.3
     7Stable tag: 6.0.4
    88License: GPLv2 or later
    99
Note: See TracChangeset for help on using the changeset viewer.