forked from flaptor/indextank-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindextank.php
More file actions
18 lines (15 loc) · 725 Bytes
/
Copy pathindextank.php
File metadata and controls
18 lines (15 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
//if you're not using autoloading you can include this file
require_once 'Indextank/Exception.php';
require_once 'Indextank/Exception/IndexAlreadyExists.php';
require_once 'Indextank/Exception/IndexDoesNotExist.php';
require_once 'Indextank/Exception/InvalidDefinition.php';
require_once 'Indextank/Exception/InvalidQuery.php';
require_once 'Indextank/Exception/InvalidResponseFromServer.php';
require_once 'Indextank/Exception/InvalidUrl.php';
require_once 'Indextank/Exception/TooManyIndexes.php';
require_once 'Indextank/Exception/Unauthorized.php';
require_once 'Indextank/Exception/HttpException.php';
require_once 'Indextank/Response.php';
require_once 'Indextank/Api.php';
require_once 'Indextank/Index.php';