1
|
|
|
<?php |
2
|
|
|
|
|
|
|
|
3
|
|
|
namespace Jaxon\Js; |
4
|
|
|
|
5
|
|
|
/** |
|
|
|
|
6
|
|
|
* CallFactory.php |
7
|
|
|
* |
8
|
|
|
* Create Jaxon client side requests, which will generate the client script necessary |
9
|
|
|
* to invoke a jaxon request from the browser to registered objects. |
10
|
|
|
* |
11
|
|
|
* @package jaxon-core |
12
|
|
|
* @author Thierry Feuzeu |
13
|
|
|
* @copyright 2022 Thierry Feuzeu <[email protected]> |
14
|
|
|
* @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License |
15
|
|
|
* @link https://github.com/jaxon-php/jaxon-core |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
use Jaxon\App\Dialog\DialogManager; |
19
|
|
|
|
20
|
|
|
use function array_shift; |
21
|
|
|
use function func_get_args; |
22
|
|
|
|
23
|
|
|
class CallFactory |
|
|
|
|
24
|
|
|
{ |
25
|
|
|
/** |
26
|
|
|
* @var string |
27
|
|
|
*/ |
28
|
|
|
protected $sPrefix; |
|
|
|
|
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @var DialogManager |
32
|
|
|
*/ |
33
|
|
|
protected $xDialogManager; |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* The class constructor |
37
|
|
|
* |
38
|
|
|
* @param string $sPrefix |
|
|
|
|
39
|
|
|
* @param DialogManager $xDialogManager |
|
|
|
|
40
|
|
|
*/ |
41
|
|
|
public function __construct(string $sPrefix, DialogManager $xDialogManager) |
|
|
|
|
42
|
|
|
{ |
43
|
|
|
$this->sPrefix = $sPrefix; |
|
|
|
|
44
|
|
|
$this->xDialogManager = $xDialogManager; |
45
|
|
|
} |
|
|
|
|
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* Generate the javascript code for a call to a given method or function |
49
|
|
|
* |
50
|
|
|
* @param string $sFunction |
|
|
|
|
51
|
|
|
* @param array $aArguments |
|
|
|
|
52
|
|
|
* |
53
|
|
|
* @return Call |
54
|
|
|
*/ |
55
|
|
|
public function __call(string $sFunction, array $aArguments): Call |
56
|
|
|
{ |
57
|
|
|
$xCall = new Call($this->sPrefix . $sFunction); |
58
|
|
|
$xCall->setDialogManager($this->xDialogManager); |
59
|
|
|
$xCall->addParameters($aArguments); |
60
|
|
|
return $xCall; |
61
|
|
|
} |
|
|
|
|
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* Return the javascript call to a Jaxon function or object method |
65
|
|
|
* |
66
|
|
|
* @param string $sFunction The function or method (without class) name |
|
|
|
|
67
|
|
|
* |
68
|
|
|
* @return Call |
69
|
|
|
* @deprecated |
70
|
|
|
*/ |
71
|
|
|
public function call(string $sFunction): Call |
72
|
|
|
{ |
73
|
|
|
$aArguments = func_get_args(); |
74
|
|
|
// Remove the function name from the arguments array. |
75
|
|
|
array_shift($aArguments); |
76
|
|
|
return $this->__call($sFunction, $aArguments); |
77
|
|
|
} |
|
|
|
|
78
|
|
|
} |
79
|
|
|
|