-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiteSettings.xml
49 lines (46 loc) · 1.28 KB
/
siteSettings.xml
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
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<!--
* registry/siteSettings.xml
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Default site settings.
-->
<!DOCTYPE site_settings [
<!ELEMENT site_settings (setting+)>
<!ELEMENT setting (name, value)>
<!ATTLIST setting type (int|string|object|bool) #REQUIRED>
<!ATTLIST setting locale (0|1) #REQUIRED>
<!ELEMENT name (#PCDATA)>
<!ELEMENT value (#PCDATA | array)*>
<!ELEMENT element (#PCDATA | array)*>
<!ATTLIST element key CDATA #IMPLIED>
<!ELEMENT array (element+)>
]>
<site_settings>
<setting type="bool" locale="0">
<name>showThumbnail</name>
<value>true</value>
</setting>
<setting type="bool" locale="0">
<name>showTitle</name>
<value>true</value>
</setting>
<setting type="bool" locale="0">
<name>showDescription</name>
<value>true</value>
</setting>
<setting type="string" locale="1">
<name>title</name>
<value>{translate key="common.openJournalSystems"}</value>
</setting>
<setting type="string" locale="1">
<name>contactName</name>
<value>{translate key="common.openJournalSystems"}</value>
</setting>
<setting type="string" locale="1">
<name>contactEmail</name>
<value>{$contactEmail}</value>
</setting>
</site_settings>