forked from mautic/mautic-joomla
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmautic.xml
124 lines (121 loc) · 3.23 KB
/
mautic.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5" type="plugin" group="system" method="upgrade">
<name>PLG_MAUTIC_NAME</name>
<author>Mautic</author>
<creationDate>October 2014</creationDate>
<copyright>Copyright 2014 Mautic. All rights reserved.</copyright>
<license>GNU/GPL Version 2 or later</license>
<authorEmail>extensions@mautic.org</authorEmail>
<authorUrl>www.mautic.org</authorUrl>
<version>1.2.0</version>
<description>PLG_MAUTIC_DESC</description>
<scriptfile>script.php</scriptfile>
<files>
<folder>language</folder>
<folder>lib</folder>
<folder>fields</folder>
<filename plugin="mautic">mautic.php</filename>
<filename>mauticApiHelper.php</filename>
</files>
<config>
<fields name="params">
<fieldset name="basic" addfieldpath="/plugins/system/mautic/fields">
<field
type="spacer"
name="base_url_header_note"
label="PLG_MAUTIC_BASE_URL_HEADER_NOTE"
/>
<field
name="base_url"
type="url"
required="true"
label="PLG_MAUTIC_BASE_URL"
description="PLG_MAUTIC_BASE_URL_DESC"
/>
<field
type="spacer"
name="oauth_header_note"
label="PLG_MAUTIC_OAUTH_HEADER_NOTE"
/>
<field
name="public_key"
type="text"
label="PLG_MAUTIC_PUBLIC_KEY"
description="PLG_MAUTIC_PUBLIC_KEY_DESC"
/>
<field
name="secret_key"
type="text"
label="PLG_MAUTIC_SECRET_KEY"
description="PLG_MAUTIC_SECRET_KEY_DESC"
/>
<field
name="authorize_button"
type="authorizebutton"
label="PLG_MAUTIC_AUTHORIZE"
description="PLG_MAUTIC_AUTHORIZE_DESC"
/>
<field
name="oauth_version"
type="radio"
default="OAuth2"
label="PLG_MAUTIC_OAUTH_VERSION"
description="PLG_MAUTIC_OAUTH_VERSION_DESC"
class="btn-group btn-group-yesno">
<option value="OAuth2">OAuth 2</option>
<option value="OAuth1a">OAuth 1.a</option>
</field>
<field
name="send_registered"
type="radio"
default="0"
label="PLG_MAUTIC_SEND_RETISTERED"
description="PLG_MAUTIC_SEND_RETISTERED_DESC"
class="btn-group btn-group-yesno">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field
name="debug_on"
type="radio"
default="0"
label="PLG_MAUTIC_DEBUG_ON"
description="PLG_MAUTIC_DEBUG_ON_DESC"
class="btn-group btn-group-yesno">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field
name="log_on"
type="radio"
default="1"
label="PLG_MAUTIC_LOG_ON"
description="PLG_MAUTIC_LOG_ON_DESC"
class="btn-group btn-group-yesno">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field
name="access_token"
type="hidden"
/>
<field
name="access_token_secret"
type="hidden"
/>
<field
name="access_token_expires"
type="hidden"
/>
<field
label="PLG_MAUTIC_DEBUG"
name="debug"
type="debug"
/>
</fieldset>
</fields>
</config>
<updateservers>
<server type="extension" priority="1" name="Mautic Update Server at GitHub"><![CDATA[http://mautic.github.io/mautic-joomla/updateserver.xml]]></server>
</updateservers>
</extension>