PluginProbe
AliNext – WooCommerce Dropshipping Plugin for AliExpress / trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress vtrunk
ali2woo-lite / includes / classes / service / SynchronizePurchaseCodeInfoService.php

SynchronizePurchaseCodeInfoService.php in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/service/SynchronizePurchaseCodeInfoService.php

33 lines 852 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Description of PurchaseCodeInfoService
5 *
6 * @author Ali2Woo Team
7 */
8
9 namespace AliNext_Lite;;
10
11 class SynchronizePurchaseCodeInfoService
12 {
13 protected SynchronizePurchaseCodeInfoProcess $SynchronizePurchaseCodeInfoProcess;
14
15 public function __construct(
16 SynchronizePurchaseCodeInfoProcess $SynchronizePurchaseCodeInfoProcess
17 ) {
18 $this->SynchronizePurchaseCodeInfoProcess = $SynchronizePurchaseCodeInfoProcess;
19 }
20
21 public function runSyncPurchaseCodeInfoProcess(): void
22 {
23 if (!Account::getInstance()->get_purchase_code()) {
24 return;
25 }
26
27 if (!$this->SynchronizePurchaseCodeInfoProcess->isQueued()) {
28 //schedule new job, only if previous is finished
29 $this->SynchronizePurchaseCodeInfoProcess->pushToQueue()->save()->dispatch();
30 }
31 }
32
33 }