-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessor.php
45 lines (41 loc) · 1019 Bytes
/
Processor.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
namespace Inkifi\MissingOrder;
use Magento\Sales\Model\Order as O;
use Mangoit\MediaclipHub\Observer\CheckoutSuccess as CS;
use Mangoit\MediaclipHub\Model\Orders as mOrder;
// 2019-01-29
final class Processor {
/**
* 2019-01-29
* @return bool
*/
function eligible() {return
!in_array($this->_o->getStatus(), ['canceled', 'pending_payment'])
&& !df_fetch_one('mediaclip_orders', 'id', [mOrder::F__MAGENTO_ORDER_ID => ikf_ite($this->_o->getId())])
;}
/**
* 2019-01-29
* @used-by \Inkifi\MissingOrder\Controller\Adminhtml\Index\Index::execute()
*/
function post() {CS::post($this->_o);}
/**
* 2019-01-29
* @used-by s()
* @param O $o
*/
private function __construct(O $o) {$this->_o = $o;}
/**
* 2019-01-29
* @used-by pid()
* @var O
*/
private $_o;
/**
* 2019-01-29
* @param int|null $oid [optional]
* @return self
*/
static function s($oid = null) {return dfcf(function($oid) {return
new self(df_order($oid))
;}, [intval($oid ?: df_request('order_id'))]);}
}