2016-12-22 03:42:11 +01:00
|
|
|
<?php
|
|
|
|
if (!isset($config))
|
|
|
|
$config = array();
|
2016-12-22 14:19:29 +01:00
|
|
|
|
2016-12-22 03:42:11 +01:00
|
|
|
/*
|
|
|
|
* The directory containing calibre's metadata.db file, with sub-directories
|
|
|
|
* containing all the formats.
|
|
|
|
* BEWARE : it has to end with a /
|
|
|
|
*/
|
2016-12-22 14:19:29 +01:00
|
|
|
$config['calibre_directory'] = 'CALIBRETOCHANGE/';
|
|
|
|
|
2016-12-22 03:42:11 +01:00
|
|
|
/*
|
|
|
|
* Catalog's title
|
|
|
|
*/
|
|
|
|
$config['cops_title_default'] = "COPS";
|
2016-12-22 14:19:29 +01:00
|
|
|
|
2016-12-22 03:42:11 +01:00
|
|
|
/*
|
|
|
|
* use URL rewriting for downloading of ebook in HTML catalog
|
|
|
|
* See README for more information
|
|
|
|
* 1 : enable
|
|
|
|
* 0 : disable
|
|
|
|
*/
|
|
|
|
$config['cops_use_url_rewriting'] = "0";
|
2016-12-22 03:46:06 +01:00
|
|
|
|
|
|
|
$config['cops_recentbooks_limit'] = '10';
|
|
|
|
|
2016-12-22 14:08:07 +01:00
|
|
|
$config['default_timezone'] = "TIMEZONETOCHANGE";
|
2016-12-22 03:46:06 +01:00
|
|
|
|
|
|
|
$config['cops_template'] = 'default';
|
|
|
|
|
|
|
|
$config['cops_style'] = 'iphone';
|
|
|
|
|
|
|
|
|
|
|
|
|