|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Copyright (c) Padosoft.com 2017. |
|
4
|
|
|
*/ |
|
5
|
|
|
|
|
6
|
|
|
|
|
7
|
|
|
namespace Padosoft\AffiliateNetwork\Networks; |
|
8
|
|
|
use Oara\Network\Publisher\Zanox; |
|
|
|
|
|
|
9
|
|
|
|
|
10
|
|
|
class ZanoxEx extends Zanox |
|
11
|
|
|
{ |
|
12
|
|
|
/** |
|
13
|
|
|
* Call protected/private method of a class. |
|
14
|
|
|
* |
|
15
|
|
|
* @param object &$object Instantiated object that we will run method on. |
|
16
|
|
|
* @param string $methodName Method name to call |
|
17
|
|
|
* @param array $parameters Array of parameters to pass into method. |
|
18
|
|
|
* |
|
19
|
|
|
* @return mixed Method return. |
|
20
|
|
|
*/ |
|
21
|
|
View Code Duplication |
public function invokeMethod(&$object,$methodName, array $parameters = array()) |
|
|
|
|
|
|
22
|
|
|
{ |
|
23
|
|
|
$reflection = new \ReflectionClass(get_class($object)); |
|
24
|
|
|
$method = $reflection->getMethod($methodName); |
|
25
|
|
|
$method->setAccessible(true); |
|
26
|
|
|
return $method->invokeArgs($object, $parameters); |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* Call protected/private property of a class. |
|
31
|
|
|
* @param $object |
|
32
|
|
|
* @param $propertyName |
|
33
|
|
|
* |
|
34
|
|
|
* @return mixed |
|
35
|
|
|
*/ |
|
36
|
|
View Code Duplication |
public function invokeProperty(&$object,$propertyName) |
|
|
|
|
|
|
37
|
|
|
{ |
|
38
|
|
|
$reflection = new \ReflectionClass(get_class($object)); |
|
39
|
|
|
$property = $reflection->getProperty($propertyName); |
|
40
|
|
|
$property->setAccessible(true); |
|
41
|
|
|
return $property->getValue($object); |
|
42
|
|
|
} |
|
43
|
|
|
/** |
|
44
|
|
|
* get Sales updated/created on the date passed |
|
45
|
|
|
* @param $date |
|
46
|
|
|
* @param $page |
|
47
|
|
|
* @param $pageSize |
|
48
|
|
|
* @param int $iteration |
|
49
|
|
|
* |
|
50
|
|
|
* @return array |
|
51
|
|
|
*/ |
|
52
|
|
|
private function getSales($date, $page, $pageSize, $iteration = 0) |
|
|
|
|
|
|
53
|
|
|
{ |
|
54
|
|
|
$transactionList = array(); |
|
55
|
|
|
try { |
|
56
|
|
|
$transactionList = $this->invokeProperty( $this, '_apiClient' )->getSales($date, 'modifiedDate', null, null, null, $page, $pageSize, $iteration); |
|
57
|
|
|
} catch (\Exception $e) { |
|
58
|
|
|
$iteration++; |
|
59
|
|
|
if ($iteration < 5) { |
|
60
|
|
|
$transactionList = self::getSales($date, $page, $pageSize, $iteration); |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
} |
|
64
|
|
|
return $transactionList; |
|
65
|
|
|
|
|
66
|
|
|
} |
|
67
|
|
|
} |
Let’s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let’s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: