| 1 |
<?php |
| 2 |
/** |
| 3 |
* IOP SDK entry |
| 4 |
* please do not modified this file unless you know how to modify and how to recover |
| 5 |
* @author xuteng.xt |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* log dir |
| 10 |
*/ |
| 11 |
if (!defined("IOP_SDK_WORK_DIR")) { |
| 12 |
define("IOP_SDK_WORK_DIR", dirname(__FILE__)); |
| 13 |
} |
| 14 |
|
| 15 |
if (!defined("IOP_AUTOLOADER_PATH")) { |
| 16 |
define("IOP_AUTOLOADER_PATH", dirname(__FILE__)); |
| 17 |
} |
| 18 |
|
| 19 |
require("iop/Constants.php"); |
| 20 |
require("iop/IopClient.php"); |
| 21 |
require("iop/IopLogger.php"); |
| 22 |
require("iop/IopRequest.php"); |
| 23 |
require("iop/UrlConstants.php"); |
| 24 |
|