]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/config.inc.php
share email +twitter / class messages
[github/wallabag/wallabag.git] / inc / poche / config.inc.php
CommitLineData
eb1af592
NL
1<?php
2/**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
a62788c6 11define ('POCHE_VERSION', '1.0-alpha');
a1283248 12define ('MODE_DEMO', FALSE);
eb1af592
NL
13define ('DEBUG_POCHE', FALSE);
14define ('CONVERT_LINKS_FOOTNOTES', FALSE);
15define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
16define ('DOWNLOAD_PICTURES', FALSE);
a62788c6 17define ('SHARE_TWITTER', TRUE);
55821e04 18define ('SHARE_MAIL', TRUE);
eb1af592
NL
19define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
20define ('ABS_PATH', 'assets/');
21define ('TPL', './tpl');
22define ('LOCALE', './locale');
23define ('CACHE', './cache');
24define ('LANG', 'fr_FR.UTF8');
3208d538 25$storage_type = 'sqlite'; # sqlite, mysql, (file, not yet)
eb1af592
NL
26
27# /!\ Be careful if you change the lines below /!\
28require_once './inc/poche/Tools.class.php';
29require_once './inc/poche/Url.class.php';
30require_once './inc/poche/Poche.class.php';
31require_once './inc/3rdparty/Readability.php';
32require_once './inc/3rdparty/Encoding.php';
33require_once './inc/3rdparty/Session.class.php';
34require_once './inc/store/store.class.php';
35require_once './inc/store/' . $storage_type . '.class.php';
36require_once './vendor/autoload.php';
c765c367 37require_once './inc/3rdparty/simple_html_dom.php';
55821e04 38require_once './inc/3rdparty/class.messages.php';
eb1af592
NL
39
40if (DOWNLOAD_PICTURES) {
32520785 41 require_once './inc/poche/pochePictures.php';
eb1af592
NL
42}
43
55821e04
NL
44$poche = new Poche($storage_type);
45$poche->messages = new Messages();