-
Notifications
You must be signed in to change notification settings - Fork 1
/
product-cleantalk-russian-2.2-cp1251.xml
382 lines (364 loc) · 21.7 KB
/
product-cleantalk-russian-2.2-cp1251.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
<?xml version="1.0" encoding="ISO-8859-1"?>
<product productid="cleantalk" active="1">
<title>Àíòèñïàì îò CleanTalk</title>
<description>Àíòèñïàì áåç êàï÷è, âîïðîñîâ-îòâåòîâ, ïîäñ÷åòà æèâîòíûõ, ïàçëîâ è àðèôìåòè÷åñêèõ çàäà÷.</description>
<version>2.3</version>
<url>https://cleantalk.org/vbulletin</url>
<versioncheckurl />
<dependencies>
<dependency dependencytype="vbulletin" minversion="3.8.0" maxversion="4.2.9" />
</dependencies>
<codes>
<code version="2.3">
<installcode><![CDATA[$db->show_errors();
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "ct_config");
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "cleantalk_timelabels");
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "cleantalk_server");
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "cleantalk_php_code");
$db->query_write("CREATE TABLE " . TABLE_PREFIX . "cleantalk_timelabels (ct_key varchar(255), ct_value int(11), PRIMARY KEY (ct_key))");
$db->query_write("CREATE TABLE " . TABLE_PREFIX . "cleantalk_server (work_url varchar(255), server_url varchar(255), server_ttl int(11), server_changed int(11))");
$ct_phrases = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "phrase WHERE varname = 'vb3_posting' AND fieldname='faqtext'");
while ($ct_phrase = $db->fetch_array($ct_phrases)) {
if ($ct_phrase[languageid] == '-1') {
$ct_text = $ct_phrase[text].'<p>Â öåëÿõ çàùèòû ôîðóìà îò ñïàìà, âàø àäðåñ ýëåêòðîííîé ïî÷òû, íèê, IP-àäðåñ è ñîîáùåíèå ìîæåò áûòü îòïðàâëåíî íà ñåðâåðà àíòè-ñïàì ñåðâèñà <a href="http://cleantalk.org">CleanTalk</a>.</p>';
$db->query_write("UPDATE " . TABLE_PREFIX . "phrase SET `text` = '".$db->escape_string($ct_text)."' WHERE phraseid='".$ct_phrase[phraseid]."'");
}
}
$db->query_write("CREATE TABLE " . TABLE_PREFIX . "cleantalk_php_code (id varchar(255), php_code text, PRIMARY KEY (id))");
$php_code = file_get_contents('https://raw.githubusercontent.com/CleanTalk/vbulletin-antispam/master/classes/cleantalk.class.php');
if($php_code !== FALSE){
$db->query_write("INSERT INTO " . TABLE_PREFIX . "cleantalk_php_code (id, php_code) VALUES ('class_base', '" . $db->escape_string($php_code) . "')");
}
$php_code = file_get_contents('https://raw.githubusercontent.com/CleanTalk/vbulletin-antispam/master/classes/cleantalk.api.utf8.php');
if($php_code !== FALSE){
$db->query_write("INSERT INTO " . TABLE_PREFIX . "cleantalk_php_code (id, php_code) VALUES ('class_api', '" . $db->escape_string($php_code) . "')");
}
]]></installcode>
<uninstallcode><![CDATA[$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "ct_config");
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "cleantalk_timelabels");
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "cleantalk_server");
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "cleantalk_php_code");
$ct_phrases = $db->query_read("SELECT l.languagecode, p.* FROM " . TABLE_PREFIX . "phrase p LEFT JOIN " . TABLE_PREFIX . "language l on l.languageid=p.languageid WHERE p.varname = 'vb3_posting' AND fieldname='faqtext'");
while ($ct_phrase = $db->fetch_array($ct_phrases)) {
if ($ct_phrase[languagecode] == 'ru') {
$ct_text = str_replace('<p>Â öåëÿõ çàùèòû ôîðóìà îò ñïàìà, âàø àäðåñ ýëåêòðîííîé ïî÷òû, íèê, IP-àäðåñ è ñîîáùåíèå ìîæåò áûòü îòïðàâëåíî íà ñåðâåðà àíòè-ñïàì ñåðâèñà <a href="http://cleantalk.org">CleanTalk</a>.</p>', '', $ct_phrase[text]);
$db->query_write("UPDATE " . TABLE_PREFIX . "phrase SET `text` = '".$db->escape_string($ct_text)."' WHERE phraseid='".$ct_phrase[phraseid]."'");
}
}]]></uninstallcode>
</code>
</codes>
<templates>
</templates>
<stylevardfns>
</stylevardfns>
<stylevars>
</stylevars>
<plugins>
<plugin active="1" executionorder="1">
<title>Cleantalk: register_addmember_process</title>
<hookname>register_addmember_process</hookname>
<phpcode><![CDATA[if(!class_exists('CleantalkResponse') || !class_exists('CleantalkRequest') || !class_exists('Cleantalk')){
$code_base = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_base' LIMIT 1");
if(is_array($code_base) && !empty($code_base['php_code'])){
eval($code_base['php_code']);
}
}
if(!class_exists('CleantalkAPI')){
$code_api = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_api' LIMIT 1");
if(is_array($code_api) && !empty($code_api['php_code'])){
eval($code_api['php_code']);
}
}
if(
class_exists('CleantalkResponse') &&
class_exists('CleantalkRequest') &&
class_exists('Cleantalk') &&
class_exists('CleantalkAPI')
){
if ($vbulletin->options['cleantalk_register_onoff'] && $vbulletin->options['cleantalk_onoff'] && empty($userdata->errors)) {
$aUser = array();
$aUser['type'] = 'register';
$aUser['sender_email'] = isset($vbulletin->GPC['email']) ? $vbulletin->GPC['email'] : '';
$aUser['sender_nickname'] = isset($vbulletin->GPC['username']) ? $vbulletin->GPC['username'] : '';
$aResult = CleantalkAPI::CheckSpam($aUser, TRUE); // Send email too
if(isset($aResult) && is_array($aResult)){
if($aResult['errno'] == 0){
if($aResult['allow'] == 0){
// Spammer - fill errors
// Note: 'stop_queue' is ignored in user checking
if (preg_match('//u', $aResult['ct_result_comment'])){
$comment_str = preg_replace('/^[^\*]*?\*\*\*|\*\*\*[^\*]*?$/iu', '', $aResult['ct_result_comment']);
$comment_str = preg_replace('/<[^<>]*>/iu', '', $comment_str);
}else{
$comment_str = preg_replace('/^[^\*]*?\*\*\*|\*\*\*[^\*]*?$/i', '', $aResult['ct_result_comment']);
$comment_str = preg_replace('/<[^<>]*>/i', '', $comment_str);
}
$userdata->errors[] = '<font color="red">'.$comment_str.'</font>';
$log_str = 'Username: '.$vbulletin->GPC['username'].', email: '.$vbulletin->GPC['email'].'. '.$comment_str;
if($vbulletin->options['cleantalk_log_onoff'])
{
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "moderatorlog (dateline, action, threadtitle, product, ipaddress) VALUES ('".TIMENOW."', '".$vbulletin->db->escape_string($log_str)."', '', 'cleantalk', '".$vbulletin->db->escape_string(IPADDRESS)."')");
}
}
}
}
unset($aUser);
unset($aResult);
}
}]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>Cleantalk: register_form_complete</title>
<hookname>register_form_complete</hookname>
<phpcode><![CDATA[if($vbulletin->options['cleantalk_link_onoff'])
{
$code = "<div id='cleantalk_footer_link' style='width:100%;text-align:center;'><a href='https://cleantalk.org/vbulletin-anti-spam-hack'>vBulletin spam</a> blocked by CleanTalk.</div>";
$footer.= $code;
}
if(!class_exists('CleantalkAPI')){
$code_api = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_api' LIMIT 1");
if(is_array($code_api) && !empty($code_api['php_code'])){
eval($code_api['php_code']);
}
}
if(class_exists('CleantalkAPI')){
if ($vbulletin->options['cleantalk_register_onoff'] && $vbulletin->options['cleantalk_onoff']) {
echo CleantalkAPI::FormAddon('comment');
}
} ]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>Cleantalk: forumhome_complete</title>
<hookname>forumhome_complete</hookname>
<phpcode><![CDATA[if($vbulletin->options['cleantalk_link_onoff'])
{
$code = "<div id='cleantalk_footer_link' style='width:100%;text-align:center;'><a href='https://cleantalk.org/vbulletin-anti-spam-hack'>vBulletin spam</a> blocked by CleanTalk.</div>";
$footer.= $code;
}
if(!class_exists('CleantalkAPI')){
$code_api = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_api' LIMIT 1");
if(is_array($code_api) && !empty($code_api['php_code'])){
eval($code_api['php_code']);
}
}
if(class_exists('CleantalkAPI')){
if ($vbulletin->options['cleantalk_onoff']) {
echo CleantalkAPI::FormAddon('comment');
}
} ]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>Cleantalk: forumdisplay_complete</title>
<hookname>forumdisplay_complete</hookname>
<phpcode><![CDATA[
if($vbulletin->options['cleantalk_link_onoff'])
{
$code = "<div id='cleantalk_footer_link' style='width:100%;text-align:center;'><a href='https://cleantalk.org/vbulletin-anti-spam-hack'>vBulletin spam</a> blocked by CleanTalk.</div>";
$footer.= $code;
}
if(!class_exists('CleantalkAPI')){
$code_api = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_api' LIMIT 1");
if(is_array($code_api) && !empty($code_api['php_code'])){
eval($code_api['php_code']);
}
}
if(class_exists('CleantalkAPI')){
if ($vbulletin->options['cleantalk_onoff']) {
echo CleantalkAPI::FormAddon('comment');
}
}
]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>Cleantalk: newthread_form_complete</title>
<hookname>newthread_form_complete</hookname>
<phpcode><![CDATA[if($vbulletin->options['cleantalk_link_onoff'])
{
$code = "<div id='cleantalk_footer_link' style='width:100%;text-align:center;'><a href='https://cleantalk.org/vbulletin-anti-spam-hack'>vBulletin spam</a> blocked by CleanTalk.</div>";
$footer.= $code;
}
if(!class_exists('CleantalkAPI')){
$code_api = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_api' LIMIT 1");
if(is_array($code_api) && !empty($code_api['php_code'])){
eval($code_api['php_code']);
}
}
if(class_exists('CleantalkAPI')){
if ($vbulletin->options['cleantalk_threads_onoff'] && $vbulletin->options['cleantalk_onoff']) {
echo CleantalkAPI::FormAddon('comment');
}
}
]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>Cleantalk: showthread_complete</title>
<hookname>showthread_complete</hookname>
<phpcode><![CDATA[if($vbulletin->options['cleantalk_link_onoff'])
{
$code = "<div id='cleantalk_footer_link' style='width:100%;text-align:center;'><a href='https://cleantalk.org/vbulletin-anti-spam-hack'>vBulletin spam</a> blocked by CleanTalk.</div>";
$footer.= $code;
}
if(!class_exists('CleantalkAPI')){
$code_api = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_api' LIMIT 1");
if(is_array($code_api) && !empty($code_api['php_code'])){
eval($code_api['php_code']);
}
}
if(class_exists('CleantalkAPI')){
if ($vbulletin->options['cleantalk_threads_onoff'] && $vbulletin->options['cleantalk_onoff']) {
echo CleantalkAPI::FormAddon('comment');
}
}
]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>Cleantalk: newreply_form_complete</title>
<hookname>newreply_form_complete</hookname>
<phpcode><![CDATA[if($vbulletin->options['cleantalk_link_onoff'])
{
$code = "<div id='cleantalk_footer_link' style='width:100%;text-align:center;'><a href='https://cleantalk.org/vbulletin-anti-spam-hack'>vBulletin spam</a> blocked by CleanTalk.</div>";
$footer.= $code;
}
if(!class_exists('CleantalkAPI')){
$code_api = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_api' LIMIT 1");
if(is_array($code_api) && !empty($code_api['php_code'])){
eval($code_api['php_code']);
}
}
if(class_exists('CleantalkAPI')){
if ($vbulletin->options['cleantalk_threads_onoff'] && $vbulletin->options['cleantalk_onoff']) {
echo CleantalkAPI::FormAddon('comment');
}
}
]]></phpcode>
</plugin>
<plugin active="1" executionorder="1">
<title>Cleantalk: newpost_complete</title>
<hookname>newpost_complete</hookname>
<phpcode><![CDATA[if(!class_exists('CleantalkResponse') || !class_exists('CleantalkRequest') || !class_exists('Cleantalk')){
$code_base = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_base' LIMIT 1");
if(is_array($code_base) && !empty($code_base['php_code'])){
eval($code_base['php_code']);
}
}
if(!class_exists('CleantalkAPI')){
$code_api = $vbulletin->db->query_first("SELECT php_code FROM " . TABLE_PREFIX . "cleantalk_php_code WHERE id='class_api' LIMIT 1");
if(is_array($code_api) && !empty($code_api['php_code'])){
eval($code_api['php_code']);
}
}
if(
class_exists('CleantalkResponse') &&
class_exists('CleantalkRequest') &&
class_exists('Cleantalk') &&
class_exists('CleantalkAPI')
){
if ($vbulletin->options['cleantalk_threads_onoff'] && $vbulletin->options['cleantalk_onoff'] && empty($dataman->errors)) {
$aUser = array();
$postinfo = fetch_postinfo($post['postid']);
$threadinfo = fetch_threadinfo($postinfo['threadid']);
$aUser['type'] = 'comment';
$aUser['sender_email'] = isset($vbulletin->userinfo['email']) ? $vbulletin->userinfo['email'] : '';
$aUser['sender_nickname'] = isset($vbulletin->userinfo['username']) ? $vbulletin->userinfo['username'] : '';
$aUser['message_body'] = isset($postinfo['pagetext']) ? $postinfo['pagetext'] : '';
$aUser['message_title'] = empty($postinfo['title']) ? $threadinfo['title'] : $postinfo['title'];
$aResult = CleantalkAPI::CheckSpam($aUser, TRUE); // Send email too
if(isset($aResult) && is_array($aResult)){
if($aResult['errno'] == 0){
if($aResult['allow'] == 0){
require_once(DIR . '/includes/functions_databuild.php');
// Spammer - fill errors
// Note: 'stop_queue' is ignored in user checking
$ct_mod_info = array(
'userid' => $GLOBALS['vbulletin']->userinfo['userid'],
'username' => $GLOBALS['vbulletin']->userinfo['username'],
'reason' => $aResult['ct_result_comment'],
'keepattachments' => true
);
$log_str = 'Username: '.$vbulletin->userinfo['username'].', email: '.$vbulletin->userinfo['email'].'. '.$aResult['ct_result_comment'];
if($vbulletin->options['cleantalk_log_onoff'])
{
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "moderatorlog (dateline, action, threadtitle, product, ipaddress) VALUES ('".TIMENOW."', '".$vbulletin->db->escape_string($log_str)."', '', 'cleantalk', '".$vbulletin->db->escape_string(IPADDRESS)."')");
}
delete_post( $postinfo['postid'], true, $threadinfo['threadid'], true, $ct_mod_info, true );
build_thread_counters($threadinfo['threadid']);
build_forum_counters($threadinfo['forumid']);
$reason = '<font color="red">'.$aResult['ct_result_comment'].'</font>';
eval(standard_error($reason));
}
}
}
unset($aUser);
unset($aResult);
}
}
]]></phpcode>
</plugin>
</plugins>
<phrases>
<phrasetype name="Error Messages" fieldname="error">
<phrase name="cleantalk_wrong" date="1165886086" username="admin" version="1.1"><![CDATA[Cleantalk îøèáêà äîñòóïà]]></phrase>
</phrasetype>
<phrasetype name="vBulletin Settings" fieldname="vbsettings">
<phrase name="setting_cleantalk_homepage_desc" date="1386770576" username="admin" version="1.0.2"><![CDATA[Ìû îòâåòèì íà âñå Âàøè âîïðîñû]]></phrase>
<phrase name="setting_cleantalk_homepage_title" date="1386770576" username="admin" version="1.0.2"><![CDATA[Äîìàøíÿÿ ñòðàíèöà]]></phrase>
<phrase name="setting_cleantalk_key_desc" date="1156440504" username="admin" version="1.0"><![CDATA[<a target="__blank" href="https://cleantalk.org/vbulletin">Êëèêíèòå, ÷òîáû ïîëó÷èòü êëþ÷</a>]]></phrase>
<phrase name="setting_cleantalk_key_title" date="1156440504" username="admin" version="1.0"><![CDATA[Êëþ÷ äîñòóïà]]></phrase>
<phrase name="setting_cleantalk_onoff_desc" date="1156440504" username="admin" version="1.0"><![CDATA[Åñëè Âû æåëàåòå îòêëþ÷èòü àíòèñïàì çàùèòó, òî âûáåðèòå Íåò.]]></phrase>
<phrase name="setting_cleantalk_onoff_title" date="1156440504" username="admin" version="1.0"><![CDATA[Âêëþ÷èòü àíòèñïàì çàùèòó?]]></phrase>
<phrase name="setting_cleantalk_register_onoff_desc" date="1156440504" username="admin" version="1.0"><![CDATA[Åñëè Âû æåëàåòå îòêëþ÷èòü ïðîâåðêó ðåãèñòðàöèé, òî âûáåðèòå Íåò.]]></phrase>
<phrase name="setting_cleantalk_register_onoff_title" date="1156440504" username="admin" version="1.0"><![CDATA[Âêëþ÷èòü ïðîâåðêó ðåãèñòðàöèé?]]></phrase>
<phrase name="setting_cleantalk_threads_onoff_desc" date="1156440504" username="admin" version="1.0"><![CDATA[Åñëè Âû æåëàåòå îòêëþ÷èòü ïðîâåðêó òåì è ñîîáùåíèé, òî âûáåðèòå Íåò.]]></phrase>
<phrase name="setting_cleantalk_threads_onoff_title" date="1156440504" username="admin" version="1.0"><![CDATA[Âêëþ÷èòü ïðîâåðêó òåì è ñîîáùåíèé?]]></phrase>
<phrase name="setting_cleantalk_log_onoff_desc" date="1156440504" username="admin" version="1.2"><![CDATA[Åñëè Âû æåëàåòå îòêëþ÷èòü çàïèñü ëîãà ïðîâåðîê, òî âûáåðèòå Íåò.]]></phrase>
<phrase name="setting_cleantalk_log_onoff_title" date="1156440504" username="admin" version="1.2"><![CDATA[Âêëþ÷èòü âåäåíèå ëîãà ïðîâåðîê?]]></phrase>
<phrase name="setting_cleantalk_link_onoff_desc" date="1156440504" username="admin" version="1.2"><![CDATA[Âêëþ÷åíèå ýòîé îïöèè ðàçìåñòèò âíèçó êàæäîé ñòðàíèöû Âàøåãî ñàéòà íåáîëüøóþ ññûëêó íà íàø ñàéò. Ýòî ïîçâîëèò Âàì ðàññêàçàòü Âàøèì ïîñåòèòåëÿì, ÷òî âû èñïîëüçóåòå CleanTalk äëÿ çàùèòû ñàéòà.]]></phrase>
<phrase name="setting_cleantalk_link_onoff_title" date="1156440504" username="admin" version="1.2"><![CDATA[Ðàññêàçàòü âñåì ïðî CleanTalk?]]></phrase>
<phrase name="settinggroup_cleantalk" date="1156439888" username="admin" version="1.0"><![CDATA[Àíòèñïàì îò CleanTalk]]></phrase>
</phrasetype>
</phrases>
<options>
<settinggroup name="cleantalk" displayorder="6690">
<setting varname="cleantalk_homepage" displayorder="1">
<datatype>free</datatype>
<optioncode><![CDATA[<div class=\"smallfont\"><a target=\"__blank\" href=\"https://cleantalk.org\">https://cleantalk.org</a></div>]]></optioncode>
</setting>
<setting varname="cleantalk_onoff" displayorder="1">
<datatype>boolean</datatype>
<optioncode>yesno</optioncode>
<defaultvalue>1</defaultvalue>
</setting>
<setting varname="cleantalk_register_onoff" displayorder="1">
<datatype>boolean</datatype>
<optioncode>yesno</optioncode>
<defaultvalue>1</defaultvalue>
</setting>
<setting varname="cleantalk_threads_onoff" displayorder="1">
<datatype>boolean</datatype>
<optioncode>yesno</optioncode>
<defaultvalue>1</defaultvalue>
</setting>
<setting varname="cleantalk_link_onoff" displayorder="1">
<datatype>boolean</datatype>
<optioncode>yesno</optioncode>
<defaultvalue>0</defaultvalue>
</setting>
<setting varname="cleantalk_log_onoff" displayorder="1">
<datatype>boolean</datatype>
<optioncode>yesno</optioncode>
<defaultvalue>1</defaultvalue>
</setting>
<setting varname="cleantalk_key" displayorder="10">
<datatype>free</datatype>
</setting>
</settinggroup>
</options>
<helptopics>
</helptopics>
<cronentries>
</cronentries>
<faqentries>
</faqentries>
<navigation>
</navigation>
</product>