Changeset 3491642
- Timestamp:
- 03/26/2026 10:00:09 AM (8 days ago)
- Location:
- api-isarud
- Files:
-
- 4 added
- 3 edited
- 8 copied
-
tags/5.7.0 (copied) (copied from api-isarud/trunk)
-
tags/5.7.0/api-isarud.php (copied) (copied from api-isarud/trunk/api-isarud.php) (5 diffs)
-
tags/5.7.0/includes/b2b-html.php (added)
-
tags/5.7.0/includes/class-isarud-b2b.php (added)
-
tags/5.7.0/includes/class-isarud-currency.php (copied) (copied from api-isarud/trunk/includes/class-isarud-currency.php)
-
tags/5.7.0/includes/currency-html.php (copied) (copied from api-isarud/trunk/includes/currency-html.php)
-
tags/5.7.0/includes/dashboard-html.php (copied) (copied from api-isarud/trunk/includes/dashboard-html.php)
-
tags/5.7.0/includes/ecosystem-html.php (copied) (copied from api-isarud/trunk/includes/ecosystem-html.php)
-
tags/5.7.0/readme-tr_TR.txt (copied) (copied from api-isarud/trunk/readme-tr_TR.txt) (1 diff)
-
tags/5.7.0/readme.txt (copied) (copied from api-isarud/trunk/readme.txt) (1 diff)
-
trunk/api-isarud.php (modified) (5 diffs)
-
trunk/includes/b2b-html.php (added)
-
trunk/includes/class-isarud-b2b.php (added)
-
trunk/readme-tr_TR.txt (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
api-isarud/tags/5.7.0/api-isarud.php
r3491635 r3491642 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: 5. 6.06 * Version: 5.7.0 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', '5. 6.0');19 define('ISARUD_VERSION', '5.7.0'); 20 20 define('ISARUD_DIR', plugin_dir_path(__FILE__)); 21 21 define('ISARUD_URL', plugin_dir_url(__FILE__)); … … 38 38 require_once ISARUD_DIR . 'includes/class-isarud-brand-lookup.php'; 39 39 require_once ISARUD_DIR . 'includes/class-isarud-currency.php'; 40 require_once ISARUD_DIR . 'includes/class-isarud-b2b.php'; 40 41 41 42 … … 323 324 add_submenu_page('isarud', 'E-ticaret Rehberi', __('E-ticaret Rehberi', 'api-isarud'), 'manage_options', 'isarud-ecosystem', [$this, 'page_ecosystem']); 324 325 add_submenu_page('isarud', 'TCMB Doviz Kuru', __('TCMB Doviz Kuru', 'api-isarud'), 'manage_options', 'isarud-currency', [$this, 'page_currency']); 326 add_submenu_page('isarud', 'B2B Toptan Satis', __('B2B Toptan Satis', 'api-isarud'), 'manage_options', 'isarud-b2b', [$this, 'page_b2b']); 325 327 } 326 328 … … 1590 1592 include ISARUD_DIR . 'includes/currency-html.php'; 1591 1593 } 1594 1595 public function page_b2b() { 1596 include ISARUD_DIR . 'includes/b2b-html.php'; 1597 } 1592 1598 } 1593 1599 -
api-isarud/tags/5.7.0/readme-tr_TR.txt
r3491635 r3491642 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 5. 6.07 Stable tag: 5.7.0 8 8 License: GPLv2 or later 9 9 -
api-isarud/tags/5.7.0/readme.txt
r3491635 r3491642 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 5. 6.07 Stable tag: 5.7.0 8 8 License: GPLv2 or later 9 9 -
api-isarud/trunk/api-isarud.php
r3491635 r3491642 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: 5. 6.06 * Version: 5.7.0 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', '5. 6.0');19 define('ISARUD_VERSION', '5.7.0'); 20 20 define('ISARUD_DIR', plugin_dir_path(__FILE__)); 21 21 define('ISARUD_URL', plugin_dir_url(__FILE__)); … … 38 38 require_once ISARUD_DIR . 'includes/class-isarud-brand-lookup.php'; 39 39 require_once ISARUD_DIR . 'includes/class-isarud-currency.php'; 40 require_once ISARUD_DIR . 'includes/class-isarud-b2b.php'; 40 41 41 42 … … 323 324 add_submenu_page('isarud', 'E-ticaret Rehberi', __('E-ticaret Rehberi', 'api-isarud'), 'manage_options', 'isarud-ecosystem', [$this, 'page_ecosystem']); 324 325 add_submenu_page('isarud', 'TCMB Doviz Kuru', __('TCMB Doviz Kuru', 'api-isarud'), 'manage_options', 'isarud-currency', [$this, 'page_currency']); 326 add_submenu_page('isarud', 'B2B Toptan Satis', __('B2B Toptan Satis', 'api-isarud'), 'manage_options', 'isarud-b2b', [$this, 'page_b2b']); 325 327 } 326 328 … … 1590 1592 include ISARUD_DIR . 'includes/currency-html.php'; 1591 1593 } 1594 1595 public function page_b2b() { 1596 include ISARUD_DIR . 'includes/b2b-html.php'; 1597 } 1592 1598 } 1593 1599 -
api-isarud/trunk/readme-tr_TR.txt
r3491635 r3491642 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 5. 6.07 Stable tag: 5.7.0 8 8 License: GPLv2 or later 9 9 -
api-isarud/trunk/readme.txt
r3491635 r3491642 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 5. 6.07 Stable tag: 5.7.0 8 8 License: GPLv2 or later 9 9
Note: See TracChangeset
for help on using the changeset viewer.