]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/config.php
factorisation code
[github/wallabag/wallabag.git] / inc / config.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 define ('DB_PATH', 'sqlite:./db/poche.sqlite');
11
12 include 'db.php';
13 include 'functions.php';
14 require_once 'Readability.php';
15 require_once 'Encoding.php';
16 require_once 'rain.tpl.class.php';
17
18 $db = new db(DB_PATH);
19
20 raintpl::$tpl_dir = './tpl/';
21 raintpl::$cache_dir = './cache/';
22 raintpl::$base_url = get_poche_url();
23 raintpl::configure('path_replace', false);
24 raintpl::configure('debug', false);
25 $tpl = new raintpl();