-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.php
38 lines (34 loc) · 1.01 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/*
* Default ebook export settings
*
* To enable a setting, remove the characters '//' at the start of the line
*/
/*
* Publisher name
* Possible values: text string or unset
* Default value: unset
* Example: $ebookSettings['publisher'] = 'Moodle University';
*/
//$ebookSettings['publisher'] = '';
/*
* Rights information (copyright etc.)
* Possible values: text string or unset
* Default value: unset
* Example: $ebookSettings['rights'] = 'Public domain';
*/
//$ebookSettings['rights'] = '';
/*
* Download and embed files referenced by absolute URL:s
* Possible values: TRUE or FALSE
* Default value: FALSE
* Example: $ebookSettings['embedNonlocalFiles'] = TRUE;
*/
//$ebookSettings['embedNonlocalFiles'] = TRUE;
/*
* Include the description text in the beginning of books
* Possible values: TRUE or FALSE
* Default value: FALSE
* Example: $ebookSettings['includeDescription'] = TRUE;
*/
//$ebookSettings['includeDescription'] = TRUE;