1 | <?php |
||
8 | class XmlRpcServer extends \IXR_Server |
||
9 | { |
||
10 | protected $remote; |
||
11 | |||
12 | /** |
||
13 | * Constructor. Register methods and run Server |
||
14 | */ |
||
15 | public function __construct() |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function call($methodname, $args) |
||
43 | |||
44 | /** |
||
45 | * @param string|int $data iso date(yyyy[-]mm[-]dd[ hh:mm[:ss]]) or timestamp |
||
46 | * @return \IXR_Date |
||
47 | */ |
||
48 | public function toDate($data) |
||
52 | |||
53 | /** |
||
54 | * @param string $data |
||
55 | * @return \IXR_Base64 |
||
56 | */ |
||
57 | public function toFile($data) |
||
61 | } |
||
62 |