]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/global.inc.php
3 * wallabag, self hostable application allowing you to not miss any content anymore
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
8 * @license http://opensource.org/licenses/MIT see COPYING file
11 # the poche system root directory (/inc)
12 define('INCLUDES', dirname(__FILE__
) . '/..');
14 # the poche root directory
15 define('ROOT', INCLUDES
. '/..');
17 require_once INCLUDES
. '/poche/Tools.class.php';
18 require_once INCLUDES
. '/poche/User.class.php';
19 require_once INCLUDES
. '/poche/Url.class.php';
20 require_once INCLUDES
. '/3rdparty/class.messages.php';
21 require_once ROOT
. '/vendor/autoload.php';
22 require_once INCLUDES
. '/poche/Template.class.php';
23 require_once INCLUDES
. '/poche/Language.class.php';
24 require_once INCLUDES
. '/poche/Routing.class.php';
25 require_once INCLUDES
. '/poche/WallabagEpub.class.php';
26 require_once INCLUDES
. '/poche/Poche.class.php';
28 require_once INCLUDES
. '/poche/Database.class.php';
29 require_once INCLUDES
. '/3rdparty/simple_html_dom.php';
30 require_once INCLUDES
. '/3rdparty/paginator.php';
31 require_once INCLUDES
. '/3rdparty/Session.class.php';
33 require_once INCLUDES
. '/3rdparty/libraries/feedwriter/FeedItem.php';
34 require_once INCLUDES
. '/3rdparty/libraries/feedwriter/FeedWriter.php';
35 require_once INCLUDES
. '/3rdparty/FlattrItem.class.php';
37 require_once INCLUDES
. '/3rdparty/htmlpurifier/HTMLPurifier.auto.php';
40 require_once INCLUDES
. '/3rdparty/libraries/PHPePub/Logger.php';
41 require_once INCLUDES
. '/3rdparty/libraries/PHPePub/EPub.php';
42 require_once INCLUDES
. '/3rdparty/libraries/PHPePub/EPubChapterSplitter.php';
44 # system configuration; database credentials et caetera
45 require_once INCLUDES
. '/poche/config.inc.php';
46 require_once INCLUDES
. '/poche/config.inc.default.php';
48 if (DOWNLOAD_PICTURES
) {
49 require_once INCLUDES
. '/poche/pochePictures.php';
52 if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timezone'))) {
53 date_default_timezone_set('UTC');
56 if (defined('ERROR_REPORTING')) {
57 error_reporting(ERROR_REPORTING
);