Changeset 2983666
- Timestamp:
- 10/25/2023 11:00:26 AM (2 years ago)
- Location:
- postapanduri
- Files:
-
- 3 edited
- 21 copied
-
tags/2.1.1 (copied) (copied from postapanduri/trunk)
-
tags/2.1.1/README.txt (copied) (copied from postapanduri/trunk/README.txt) (2 diffs)
-
tags/2.1.1/inc/admin/class-admin.php (copied) (copied from postapanduri/trunk/inc/admin/class-admin.php) (2 diffs)
-
tags/2.1.1/inc/admin/class-settingspage.php (copied) (copied from postapanduri/trunk/inc/admin/class-settingspage.php)
-
tags/2.1.1/inc/core/class-activator.php (copied) (copied from postapanduri/trunk/inc/core/class-activator.php)
-
tags/2.1.1/inc/core/class-init.php (copied) (copied from postapanduri/trunk/inc/core/class-init.php)
-
tags/2.1.1/inc/core/class-wc-postapanduri.php (copied) (copied from postapanduri/trunk/inc/core/class-wc-postapanduri.php)
-
tags/2.1.1/inc/front/class-front.php (copied) (copied from postapanduri/trunk/inc/front/class-front.php)
-
tags/2.1.1/inc/front/class-pachetomate.php (copied) (copied from postapanduri/trunk/inc/front/class-pachetomate.php)
-
tags/2.1.1/inc/front/css/postapanduri-public.css (copied) (copied from postapanduri/trunk/inc/front/css/postapanduri-public.css)
-
tags/2.1.1/inc/front/js/postapanduri-public-gmaps-ajax.js (copied) (copied from postapanduri/trunk/inc/front/js/postapanduri-public-gmaps-ajax.js)
-
tags/2.1.1/inc/front/js/postapanduri-public-mapbox-ajax.js (copied) (copied from postapanduri/trunk/inc/front/js/postapanduri-public-mapbox-ajax.js)
-
tags/2.1.1/inc/front/partials/plugin-postapanduri-gmaps.php (copied) (copied from postapanduri/trunk/inc/front/partials/plugin-postapanduri-gmaps.php)
-
tags/2.1.1/inc/front/partials/plugin-postapanduri-map.php (copied) (copied from postapanduri/trunk/inc/front/partials/plugin-postapanduri-map.php)
-
tags/2.1.1/inc/front/templates/mobile (copied) (copied from postapanduri/trunk/inc/front/templates/mobile)
-
tags/2.1.1/inc/libraries/class-lo.php (copied) (copied from postapanduri/trunk/inc/libraries/class-lo.php)
-
tags/2.1.1/languages/postapanduri-ro_RO-4e2b038f5590b68c789d3b5ad409d118.json (copied) (copied from postapanduri/trunk/languages/postapanduri-ro_RO-4e2b038f5590b68c789d3b5ad409d118.json)
-
tags/2.1.1/languages/postapanduri-ro_RO-8a9dc8a4ab6df6e3f049ef3a10cc7e14.json (copied) (copied from postapanduri/trunk/languages/postapanduri-ro_RO-8a9dc8a4ab6df6e3f049ef3a10cc7e14.json)
-
tags/2.1.1/languages/postapanduri-ro_RO.mo (copied) (copied from postapanduri/trunk/languages/postapanduri-ro_RO.mo)
-
tags/2.1.1/languages/postapanduri-ro_RO.po (copied) (copied from postapanduri/trunk/languages/postapanduri-ro_RO.po)
-
tags/2.1.1/postapanduri.php (copied) (copied from postapanduri/trunk/postapanduri.php) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/inc/admin/class-admin.php (modified) (2 diffs)
-
trunk/postapanduri.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
postapanduri/tags/2.1.1/README.txt
r2983657 r2983666 5 5 Requires at least: 5.0 6 6 Tested up to: 6.3 7 Stable tag: 2.1. 07 Stable tag: 2.1.1 8 8 Requires PHP: 5.5.0 9 9 License: GPLv3 … … 77 77 == Changelog == 78 78 79 = 2.1.1 = 80 * Woocommerce HPOS support fix 81 79 82 = 2.1.0 = 80 83 * Woocommerce HPOS support -
postapanduri/tags/2.1.1/inc/admin/class-admin.php
r2983657 r2983666 7 7 use PostaPanduri\Inc\Core\WC_PostaPanduri as WC_PostaPanduri; 8 8 use PostaPanduri\Inc\Libraries\LO as LO; 9 use WP_Post; 9 10 10 11 /** … … 358 359 } 359 360 360 public static function form_generare_awb($ order)361 public static function form_generare_awb($post_or_order_object) 361 362 { 362 363 global $wpdb; 364 365 $order = ( $post_or_order_object instanceof WP_Post ) ? wc_get_order( $post_or_order_object->ID ) : $post_or_order_object; 363 366 364 367 $lo = new LO(); -
postapanduri/tags/2.1.1/postapanduri.php
r2983657 r2983666 17 17 * Plugin URI: https://postapanduri.ro/ 18 18 * Description: Courier Services and Smartlocker pickpup. Clients who buy online and can opt to pick up the ordered packages from the nearest preset pickup point or to have the parcel delivered to their door. 19 * Version: 2.1. 019 * Version: 2.1.1 20 20 * Author: C Solution SRL 21 21 * Author URI: https://www.c-solution.biz/ … … 43 43 define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\'); 44 44 define(NS . 'PLUGIN_NAME', 'postapanduri'); 45 define(NS . 'PLUGIN_VERSION', '2.1. 0');45 define(NS . 'PLUGIN_VERSION', '2.1.1'); 46 46 define(NS . 'PLUGIN_NAME_DIR', plugin_dir_path(__FILE__)); 47 47 define(NS . 'PLUGIN_NAME_URL', plugin_dir_url(__FILE__)); -
postapanduri/trunk/README.txt
r2983657 r2983666 5 5 Requires at least: 5.0 6 6 Tested up to: 6.3 7 Stable tag: 2.1. 07 Stable tag: 2.1.1 8 8 Requires PHP: 5.5.0 9 9 License: GPLv3 … … 77 77 == Changelog == 78 78 79 = 2.1.1 = 80 * Woocommerce HPOS support fix 81 79 82 = 2.1.0 = 80 83 * Woocommerce HPOS support -
postapanduri/trunk/inc/admin/class-admin.php
r2983657 r2983666 7 7 use PostaPanduri\Inc\Core\WC_PostaPanduri as WC_PostaPanduri; 8 8 use PostaPanduri\Inc\Libraries\LO as LO; 9 use WP_Post; 9 10 10 11 /** … … 358 359 } 359 360 360 public static function form_generare_awb($ order)361 public static function form_generare_awb($post_or_order_object) 361 362 { 362 363 global $wpdb; 364 365 $order = ( $post_or_order_object instanceof WP_Post ) ? wc_get_order( $post_or_order_object->ID ) : $post_or_order_object; 363 366 364 367 $lo = new LO(); -
postapanduri/trunk/postapanduri.php
r2983657 r2983666 17 17 * Plugin URI: https://postapanduri.ro/ 18 18 * Description: Courier Services and Smartlocker pickpup. Clients who buy online and can opt to pick up the ordered packages from the nearest preset pickup point or to have the parcel delivered to their door. 19 * Version: 2.1. 019 * Version: 2.1.1 20 20 * Author: C Solution SRL 21 21 * Author URI: https://www.c-solution.biz/ … … 43 43 define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\'); 44 44 define(NS . 'PLUGIN_NAME', 'postapanduri'); 45 define(NS . 'PLUGIN_VERSION', '2.1. 0');45 define(NS . 'PLUGIN_VERSION', '2.1.1'); 46 46 define(NS . 'PLUGIN_NAME_DIR', plugin_dir_path(__FILE__)); 47 47 define(NS . 'PLUGIN_NAME_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.