author | ymh <ymh.work@gmail.com> |
Mon, 08 Sep 2025 19:44:41 +0200 | |
changeset 23 | 417f20492bf7 |
parent 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* IXR - The Incutio XML-RPC Library |
|
4 |
* |
|
5 |
* Copyright (c) 2010, Incutio Ltd. |
|
6 |
* All rights reserved. |
|
7 |
* |
|
8 |
* Redistribution and use in source and binary forms, with or without |
|
9 |
* modification, are permitted provided that the following conditions are met: |
|
10 |
* |
|
11 |
* - Redistributions of source code must retain the above copyright notice, |
|
12 |
* this list of conditions and the following disclaimer. |
|
13 |
* - Redistributions in binary form must reproduce the above copyright |
|
14 |
* notice, this list of conditions and the following disclaimer in the |
|
15 |
* documentation and/or other materials provided with the distribution. |
|
16 |
* - Neither the name of Incutio Ltd. nor the names of its contributors |
|
17 |
* may be used to endorse or promote products derived from this software |
|
18 |
* without specific prior written permission. |
|
19 |
* |
|
20 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
|
21 |
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
|
22 |
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|
23 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR |
|
24 |
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|
25 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
26 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|
27 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
|
28 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
29 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
|
30 |
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
31 |
* |
|
32 |
* @package IXR |
|
5 | 33 |
* @since 1.5.0 |
0 | 34 |
* |
35 |
* @copyright Incutio Ltd 2010 (http://www.incutio.com) |
|
36 |
* @version 1.7.4 7th September 2010 |
|
37 |
* @author Simon Willison |
|
38 |
* @link http://scripts.incutio.com/xmlrpc/ Site/manual |
|
39 |
* @license http://www.opensource.org/licenses/bsd-license.php BSD |
|
40 |
*/ |
|
41 |
||
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
16
diff
changeset
|
42 |
// Don't load directly. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
16
diff
changeset
|
43 |
if ( ! defined( 'ABSPATH' ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
16
diff
changeset
|
44 |
die( '-1' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
16
diff
changeset
|
45 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
16
diff
changeset
|
46 |
|
16 | 47 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-server.php'; |
0 | 48 |
|
16 | 49 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-base64.php'; |
0 | 50 |
|
16 | 51 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-client.php'; |
0 | 52 |
|
16 | 53 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-clientmulticall.php'; |
0 | 54 |
|
16 | 55 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-date.php'; |
0 | 56 |
|
16 | 57 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-error.php'; |
0 | 58 |
|
16 | 59 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-introspectionserver.php'; |
0 | 60 |
|
16 | 61 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-message.php'; |
0 | 62 |
|
16 | 63 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-request.php'; |
0 | 64 |
|
16 | 65 |
require_once ABSPATH . WPINC . '/IXR/class-IXR-value.php'; |