-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathswitcher.xml
More file actions
57 lines (57 loc) · 1.76 KB
/
switcher.xml
File metadata and controls
57 lines (57 loc) · 1.76 KB
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
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<extension version="4.0" type="plugin" group="editors" method="upgrade">
<name>plg_editors_switcher</name>
<version>4.0.0</version>
<author>Thomas Hunziker (www.bakual.net), Yoshiki Kozaki(www.joomler.net)</author>
<authorEmail>bakual@bakual.net</authorEmail>
<authorUrl>https://www.bakual.net</authorUrl>
<creationDate>2022-01-01</creationDate>
<copyright>© 2022</copyright>
<license>http://www.gnu.org/licenses/gpl.html</license>
<description>PLG_EDITOR_SWITCHER_XML_DESCRIPTION</description>
<scriptfile>script.php</scriptfile>
<files>
<filename plugin="switcher">switcher.php</filename>
<folder>language</folder>
<folder>fields</folder>
<folder>tmpl</folder>
</files>
<updateservers>
<server type="extension" priority="1" name="Bakual.net">http://www.bakual.net/update/plg_editors_switcher.xml</server>
</updateservers>
<config>
<fields name="params" addfieldpath="/plugins/editors/switcher/fields">
<fieldset name="basic">
<field
name="default_editor"
type="customeditors"
default="tinymce"
label="PLG_EDITOR_SWITCHER_EDITOR_LABEL"
useaccess="true"
folder="editors"
/>
<field
name="confirmation"
type="radio"
label="PLG_EDITORS_SWITCHER_CONFIRMATION_LABEL"
description="PLG_EDITORS_SWITCHER_CONFIRMATION_DESC"
class="btn-group btn-group-yesno"
default="1"
>
<option value="1">JYes</option>
<option value="0">JNo</option>
</field>
<field
name="cookie_days"
type="text"
label="PLG_EDITORS_SWITCHER_COOKIEDAYS_LABEL"
description="PLG_EDITORS_SWITCHER_COOKIEDAYS_DESC"
class="validate-numeric"
filter="integer"
validate="number"
default="365"
/>
</fieldset>
</fields>
</config>
</extension>