-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod_adminchat.xml
More file actions
64 lines (62 loc) · 2.03 KB
/
mod_adminchat.xml
File metadata and controls
64 lines (62 loc) · 2.03 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
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<extension type="module" client="administrator" method="upgrade">
<name>mod_adminchat</name>
<author>Joomla! Project</author>
<creationDate>2005-11</creationDate>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
<version>5.0.0</version>
<description>MOD_ADMINCHAT_XML_DESCRIPTION</description>
<namespace path="src">CodeAlongJug\Module\Adminchat</namespace>
<files>
<folder module="mod_adminchat">services</folder>
<folder>src</folder>
<folder>tmpl</folder>
</files>
<languages>
<language tag="en-GB">language/en-GB/mod_adminchat.ini</language>
<language tag="en-GB">language/en-GB/mod_adminchat.sys.ini</language>
</languages>
<config>
<fields name="params">
<fieldset name="basic">
<field
class="form-select"
name="chat_type"
label="Chat Type"
type="list"
>
<option value="tawkto">Tawk.to</option>
<option value="crisp">Crisp</option>
<option value="messenger">Messenger</option>
<option value="whatsapp">WhatsApp</option>
</field>
<field
name="widget_id"
type="text"
label="Tawk.to Widget Code"
description="Paste your Tawk.to widget embed id here"
showon="tawkto"
/>
</fieldset>
<fieldset name="advanced">
<field
name="layout"
type="modulelayout"
label="JFIELD_ALT_LAYOUT_LABEL"
class="form-select"
validate="moduleLayout"
/>
<field
name="moduleclass_sfx"
type="textarea"
label="COM_MODULES_FIELD_MODULECLASS_SFX_LABEL"
rows="3"
validate="CssIdentifier"
/>
</fieldset>
</fields>
</config>
</extension>