Changeset 2821378
- Timestamp:
- 11/21/2022 09:27:36 AM (3 years ago)
- Location:
- wc-spod/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
classes/SpodPodApiArticles.php (modified) (4 diffs)
-
wc-spod.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wc-spod/trunk/README.txt
r2740439 r2821378 4 4 Tags: Print on demand, Dropshipping, Woocommerce, POD, Print, Print on demand Europe, Print on demand US, SPOD, T-Shirts, Spreadshirt, Apparel 5 5 Requires at least: 4.6 - 5.7 6 Tested up to: 5.87 Stable tag: 1. 0.06 Tested up to: 6.1 7 Stable tag: 1.2.1 8 8 License: GPLv2 or later 9 9 Requires PHP: 7.4 -
wc-spod/trunk/classes/SpodPodApiArticles.php
r2708945 r2821378 295 295 * @since 1.0.0 296 296 * @param WC_Product $product 297 * @param int $article_image298 * @param array $gallery_images299 297 */ 300 298 protected function deleteArticleImages($product) … … 356 354 * Insert images data to temporary table 357 355 * @since 1.0.0 356 * @param object $product 358 357 * @param array $image_array 359 * @param object $product360 358 * @return void 361 359 */ 362 protected function insertImageDataToTemp($ image_array = [], $product)360 protected function insertImageDataToTemp($product, $image_array = []) 363 361 { 364 362 global $wpdb; … … 380 378 * upload image, attach to mediathek and wc_product 381 379 * @since 1.0.0 380 * @param object $product 382 381 * @param array $image_array 383 * @param object $product384 382 * @return void 385 383 */ 386 protected function uploadImages($ image_array = [], $product)384 protected function uploadImages($product, $image_array = []) 387 385 { 388 386 global $wpdb; … … 501 499 * upload image, attach to mediathek and wc_product 502 500 * @since 1.0.0 501 * @param object $product 503 502 * @param array $image_array 504 * @param object $product505 503 * @return void 506 504 */ 507 protected function uploadProductImages($ image_array = [], $product)505 protected function uploadProductImages($product, $image_array = []) 508 506 { 509 507 global $wpdb; -
wc-spod/trunk/wc-spod.php
r2740437 r2821378 29 29 * Currently plugin version. 30 30 */ 31 define( 'SPOD_POD_VERSION', '1.2. 1' );31 define( 'SPOD_POD_VERSION', '1.2.2' ); 32 32 define( 'MIN_WORDPRESS_VERSION_REQUIRED', 4.8 ); 33 33 define( 'MIN_WOOCOMMERCE_VERSION_REQUIRED', 4.7);
Note: See TracChangeset
for help on using the changeset viewer.