]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/config.inc.php
postgres
[github/wallabag/wallabag.git] / inc / poche / config.inc.php
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
11 define ('POCHE_VERSION', '1.0-beta');
12 define ('MODE_DEMO', FALSE);
13 define ('DEBUG_POCHE', TRUE);
14 define ('CONVERT_LINKS_FOOTNOTES', FALSE);
15 define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
16 define ('DOWNLOAD_PICTURES', FALSE);
17 define ('SHARE_TWITTER', TRUE);
18 define ('SHARE_MAIL', TRUE);
19 define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
20 define ('ABS_PATH', 'assets/');
21 define ('TPL', './tpl');
22 define ('LOCALE', './locale');
23 define ('CACHE', './cache');
24 define ('LANG', 'en_EN.UTF8');
25 define ('PAGINATION', '10');
26 define ('THEME', 'light');
27 define ('STORAGE','postgres'); # postgres, mysql, sqlite
28
29 # /!\ Be careful if you change the lines below /!\
30 require_once './inc/poche/User.class.php';
31 require_once './inc/poche/Tools.class.php';
32 require_once './inc/poche/Url.class.php';
33 require_once './inc/3rdparty/class.messages.php';
34 require_once './inc/poche/Poche.class.php';
35 require_once './inc/3rdparty/Readability.php';
36 require_once './inc/3rdparty/Encoding.php';
37 require_once './inc/poche/Database.class.php';
38 require_once './vendor/autoload.php';
39 require_once './inc/3rdparty/simple_html_dom.php';
40 require_once './inc/3rdparty/paginator.php';
41 require_once './inc/3rdparty/Session.class.php';
42
43 if (DOWNLOAD_PICTURES) {
44 require_once './inc/poche/pochePictures.php';
45 }
46
47 $poche = new Poche();
48
49 #XSRF protection with token
50 // if (!empty($_POST)) {
51 // if (!Session::isToken($_POST['token'])) {
52 // die(_('Wrong token'));
53 // }
54 // unset($_SESSION['tokens']);
55 // }