]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - inc/config.php
display flash message in article view
[github/wallabag/wallabag.git] / inc / config.php
... / ...
CommitLineData
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
11define ('POCHE_VERSION', '0.2.1');
12
13if (!is_dir('db/')) {
14 @mkdir('db/',0705);
15}
16
17define ('ABS_PATH', 'assets/');
18define ('CONVERT_LINKS_FOOTNOTES', TRUE);
19define ('REVERT_FORCED_PARAGRAPH_ELEMENTS',FALSE);
20define ('DOWNLOAD_PICTURES', TRUE);
21$storage_type = 'sqlite'; # sqlite or file
22
23include 'functions.php';
24require_once 'Readability.php';
25require_once 'Encoding.php';
26require_once 'rain.tpl.class.php';
27require_once 'MyTool.class.php';
28require_once 'Session.class.php';
29require_once 'store/store.class.php';
30require_once 'store/sqlite.class.php';
31require_once 'store/file.class.php';
32require_once 'class.messages.php';
33
34Session::init();
35
36$store = new $storage_type();
37$msg = new Messages();
38
39# initialisation de RainTPL
40raintpl::$tpl_dir = './tpl/';
41raintpl::$cache_dir = './cache/';
42raintpl::$base_url = get_poche_url();
43raintpl::configure('path_replace', false);
44raintpl::configure('debug', false);
45$tpl = new raintpl();
46$tpl->assign('msg', $msg);