wallabag/inc/poche/config.inc.php

47 lines
1.5 KiB
PHP
Raw Normal View History

2013-08-04 20:58:31 +02:00
<?php
/**
* poche, a read it later open source system
*
* @category poche
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
* @copyright 2013
* @license http://www.wtfpl.net/ see COPYING file
*/
2013-08-05 21:56:32 +02:00
define ('POCHE_VERSION', '1.0-beta');
2013-08-05 10:03:59 +02:00
define ('MODE_DEMO', FALSE);
2013-08-04 20:58:31 +02:00
define ('DEBUG_POCHE', FALSE);
define ('CONVERT_LINKS_FOOTNOTES', FALSE);
define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
define ('DOWNLOAD_PICTURES', FALSE);
2013-08-05 09:43:33 +02:00
define ('SHARE_TWITTER', TRUE);
2013-08-05 15:54:37 +02:00
define ('SHARE_MAIL', TRUE);
2013-08-04 20:58:31 +02:00
define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
define ('ABS_PATH', 'assets/');
define ('TPL', './tpl');
define ('LOCALE', './locale');
define ('CACHE', './cache');
define ('LANG', 'fr_FR.UTF8');
2013-08-05 21:56:32 +02:00
define ('PAGINATION', '10');
define ('THEME', 'light');
2013-08-05 08:54:42 +02:00
$storage_type = 'sqlite'; # sqlite, mysql, (file, not yet)
2013-08-04 20:58:31 +02:00
# /!\ Be careful if you change the lines below /!\
require_once './inc/poche/Tools.class.php';
require_once './inc/poche/Url.class.php';
2013-08-05 21:56:32 +02:00
require_once './inc/3rdparty/Session.class.php';
require_once './inc/3rdparty/class.messages.php';
2013-08-04 20:58:31 +02:00
require_once './inc/poche/Poche.class.php';
require_once './inc/3rdparty/Readability.php';
require_once './inc/3rdparty/Encoding.php';
require_once './inc/store/store.class.php';
require_once './inc/store/' . $storage_type . '.class.php';
require_once './vendor/autoload.php';
require_once './inc/3rdparty/simple_html_dom.php';
2013-08-05 21:56:32 +02:00
require_once './inc/3rdparty/paginator.php';
2013-08-04 20:58:31 +02:00
if (DOWNLOAD_PICTURES) {
require_once './inc/poche/pochePictures.php';
2013-08-04 20:58:31 +02:00
}
2013-08-05 21:56:32 +02:00
$poche = new Poche($storage_type);