Changeset 3491895
- Timestamp:
- 03/26/2026 03:01:31 PM (8 days ago)
- Location:
- api-isarud
- Files:
-
- 4 added
- 3 edited
- 6 copied
-
tags/6.0.2 (copied) (copied from api-isarud/trunk)
-
tags/6.0.2/api-isarud.php (copied) (copied from api-isarud/trunk/api-isarud.php) (5 diffs)
-
tags/6.0.2/includes/class-isarud-einvoice.php (copied) (copied from api-isarud/trunk/includes/class-isarud-einvoice.php)
-
tags/6.0.2/includes/class-isarud-upsell.php (added)
-
tags/6.0.2/includes/einvoice-html.php (copied) (copied from api-isarud/trunk/includes/einvoice-html.php)
-
tags/6.0.2/includes/upsell-html.php (added)
-
tags/6.0.2/readme-tr_TR.txt (copied) (copied from api-isarud/trunk/readme-tr_TR.txt) (1 diff)
-
tags/6.0.2/readme.txt (copied) (copied from api-isarud/trunk/readme.txt) (1 diff)
-
trunk/api-isarud.php (modified) (5 diffs)
-
trunk/includes/class-isarud-upsell.php (added)
-
trunk/includes/upsell-html.php (added)
-
trunk/readme-tr_TR.txt (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
api-isarud/tags/6.0.2/api-isarud.php
r3491769 r3491895 4 4 * Plugin URI: https://isarud.com/integrations 5 5 * 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. 16 * Version: 6.0.2 7 7 * Requires at least: 6.0 8 8 * Tested up to: 6.9 … … 17 17 if (!defined('ABSPATH')) exit; 18 18 19 define('ISARUD_VERSION', '6.0. 1');19 define('ISARUD_VERSION', '6.0.2'); 20 20 define('ISARUD_DIR', plugin_dir_path(__FILE__)); 21 21 define('ISARUD_URL', plugin_dir_url(__FILE__)); … … 44 44 require_once ISARUD_DIR . 'includes/class-isarud-email-marketing.php'; 45 45 require_once ISARUD_DIR . 'includes/class-isarud-einvoice.php'; 46 require_once ISARUD_DIR . 'includes/class-isarud-upsell.php'; 46 47 47 48 … … 335 336 add_submenu_page('isarud', 'E-posta Pazarlama', __('E-posta Pazarlama', 'api-isarud'), 'manage_options', 'isarud-email-marketing', [$this, 'page_email_marketing']); 336 337 add_submenu_page('isarud', 'E-Fatura', __('E-Fatura', 'api-isarud'), 'manage_options', 'isarud-einvoice', [$this, 'page_einvoice']); 338 add_submenu_page('isarud', 'Cross-sell & Upsell', __('Cross-sell & Upsell', 'api-isarud'), 'manage_options', 'isarud-upsell', [$this, 'page_upsell']); 337 339 } 338 340 … … 1626 1628 include ISARUD_DIR . 'includes/einvoice-html.php'; 1627 1629 } 1630 1631 public function page_upsell() { 1632 include ISARUD_DIR . 'includes/upsell-html.php'; 1633 } 1628 1634 } 1629 1635 -
api-isarud/tags/6.0.2/readme-tr_TR.txt
r3491769 r3491895 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 6.0. 17 Stable tag: 6.0.2 8 8 License: GPLv2 or later 9 9 -
api-isarud/tags/6.0.2/readme.txt
r3491769 r3491895 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 6.0. 17 Stable tag: 6.0.2 8 8 License: GPLv2 or later 9 9 -
api-isarud/trunk/api-isarud.php
r3491769 r3491895 4 4 * Plugin URI: https://isarud.com/integrations 5 5 * 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. 16 * Version: 6.0.2 7 7 * Requires at least: 6.0 8 8 * Tested up to: 6.9 … … 17 17 if (!defined('ABSPATH')) exit; 18 18 19 define('ISARUD_VERSION', '6.0. 1');19 define('ISARUD_VERSION', '6.0.2'); 20 20 define('ISARUD_DIR', plugin_dir_path(__FILE__)); 21 21 define('ISARUD_URL', plugin_dir_url(__FILE__)); … … 44 44 require_once ISARUD_DIR . 'includes/class-isarud-email-marketing.php'; 45 45 require_once ISARUD_DIR . 'includes/class-isarud-einvoice.php'; 46 require_once ISARUD_DIR . 'includes/class-isarud-upsell.php'; 46 47 47 48 … … 335 336 add_submenu_page('isarud', 'E-posta Pazarlama', __('E-posta Pazarlama', 'api-isarud'), 'manage_options', 'isarud-email-marketing', [$this, 'page_email_marketing']); 336 337 add_submenu_page('isarud', 'E-Fatura', __('E-Fatura', 'api-isarud'), 'manage_options', 'isarud-einvoice', [$this, 'page_einvoice']); 338 add_submenu_page('isarud', 'Cross-sell & Upsell', __('Cross-sell & Upsell', 'api-isarud'), 'manage_options', 'isarud-upsell', [$this, 'page_upsell']); 337 339 } 338 340 … … 1626 1628 include ISARUD_DIR . 'includes/einvoice-html.php'; 1627 1629 } 1630 1631 public function page_upsell() { 1632 include ISARUD_DIR . 'includes/upsell-html.php'; 1633 } 1628 1634 } 1629 1635 -
api-isarud/trunk/readme-tr_TR.txt
r3491769 r3491895 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 6.0. 17 Stable tag: 6.0.2 8 8 License: GPLv2 or later 9 9 -
api-isarud/trunk/readme.txt
r3491769 r3491895 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 6.0. 17 Stable tag: 6.0.2 8 8 License: GPLv2 or later 9 9
Note: See TracChangeset
for help on using the changeset viewer.