]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/config.inc.php
new design, pagination & more
[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', FALSE);
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', 'fr_FR.UTF8');
25 define ('PAGINATION', '10');
26 define ('THEME', 'light');
27 $storage_type = 'sqlite'; # sqlite, mysql, (file, not yet)
28
29 # /!\ Be careful if you change the lines below /!\
30 require_once './inc/poche/Tools.class.php';
31 require_once './inc/poche/Url.class.php';
32 require_once './inc/3rdparty/Session.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/store/store.class.php';
38 require_once './inc/store/' . $storage_type . '.class.php';
39 require_once './vendor/autoload.php';
40 require_once './inc/3rdparty/simple_html_dom.php';
41 require_once './inc/3rdparty/paginator.php';
42
43 if (DOWNLOAD_PICTURES) {
44 require_once './inc/poche/pochePictures.php';
45 }
46
47 $poche = new Poche($storage_type);