diff options
author | Nicolas Lœuillet <nicolas@loeuillet.org> | 2015-01-20 07:40:39 +0100 |
---|---|---|
committer | Nicolas Lœuillet <nicolas@loeuillet.org> | 2015-01-20 07:40:39 +0100 |
commit | 6ad93dff69d7c2beb2196e73f641e6484fccbeb7 (patch) | |
tree | 12430b858be2a41029fc11d1afa1fa2a120b96f9 /inc/poche/global.inc.php | |
parent | c78c1a3f08815aab99752026ccdf1dcf63cf43c1 (diff) | |
download | wallabag-6ad93dff69d7c2beb2196e73f641e6484fccbeb7.tar.gz wallabag-6ad93dff69d7c2beb2196e73f641e6484fccbeb7.tar.zst wallabag-6ad93dff69d7c2beb2196e73f641e6484fccbeb7.zip |
new folders
Diffstat (limited to 'inc/poche/global.inc.php')
-rwxr-xr-x | inc/poche/global.inc.php | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/inc/poche/global.inc.php b/inc/poche/global.inc.php deleted file mode 100755 index ff7ebf64..00000000 --- a/inc/poche/global.inc.php +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | <?php | ||
2 | /** | ||
3 | * wallabag, self hostable application allowing you to not miss any content anymore | ||
4 | * | ||
5 | * @category wallabag | ||
6 | * @author Nicolas Lœuillet <nicolas@loeuillet.org> | ||
7 | * @copyright 2013 | ||
8 | * @license http://opensource.org/licenses/MIT see COPYING file | ||
9 | */ | ||
10 | |||
11 | # the poche system root directory (/inc) | ||
12 | define('INCLUDES', dirname(__FILE__) . '/..'); | ||
13 | |||
14 | # the poche root directory | ||
15 | define('ROOT', INCLUDES . '/..'); | ||
16 | |||
17 | require_once ROOT . '/vendor/autoload.php'; | ||
18 | require_once INCLUDES . '/poche/Tools.class.php'; | ||
19 | require_once INCLUDES . '/poche/User.class.php'; | ||
20 | require_once INCLUDES . '/poche/Url.class.php'; | ||
21 | require_once INCLUDES . '/poche/Template.class.php'; | ||
22 | require_once INCLUDES . '/poche/Language.class.php'; | ||
23 | require_once INCLUDES . '/poche/Routing.class.php'; | ||
24 | require_once INCLUDES . '/poche/WallabagEBooks.class.php'; | ||
25 | require_once INCLUDES . '/poche/Poche.class.php'; | ||
26 | require_once INCLUDES . '/poche/Database.class.php'; | ||
27 | require_once INCLUDES . '/poche/FlattrItem.class.php'; | ||
28 | |||
29 | # system configuration; database credentials et caetera | ||
30 | require_once INCLUDES . '/poche/config.inc.php'; | ||
31 | require_once INCLUDES . '/poche/config.inc.default.php'; | ||
32 | |||
33 | if (DOWNLOAD_PICTURES) { | ||
34 | require_once INCLUDES . '/poche/pochePictures.php'; | ||
35 | } | ||
36 | |||
37 | if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timezone'))) { | ||
38 | date_default_timezone_set('UTC'); | ||
39 | } | ||
40 | |||
41 | if (defined('ERROR_REPORTING')) { | ||
42 | error_reporting(ERROR_REPORTING); | ||
43 | } \ No newline at end of file | ||