mirror of
https://github.com/YunoHost-Apps/cops_ynh.git
synced 2024-09-03 18:25:57 +02:00
34 lines
765 B
PHP
34 lines
765 B
PHP
<?php
|
|
if (!isset($config))
|
|
$config = array();
|
|
|
|
/*
|
|
* The directory containing calibre's metadata.db file, with sub-directories
|
|
* containing all the formats.
|
|
* BEWARE : it has to end with a /
|
|
*/
|
|
$config['calibre_directory'] = 'CALIBRETOCHANGE';
|
|
|
|
/*
|
|
* Catalog's title
|
|
*/
|
|
$config['cops_title_default'] = "COPS";
|
|
|
|
/*
|
|
* 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";
|
|
|
|
$config['cops_recentbooks_limit'] = '10';
|
|
|
|
$config['default_timezone'] = "Europe/London";
|
|
|
|
$config['cops_template'] = 'default';
|
|
|
|
$config['cops_style'] = 'iphone';
|
|
|
|
|
|
|