forked from miraheze/mw-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContactPage.php
64 lines (60 loc) · 1.83 KB
/
ContactPage.php
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
<?php
if ( $wgDBname == 'extloadwiki' ) {
// Test form on extloadwiki - this is *not* as complicated as they get
$wgContactConfig['extloadtest'] = array(
'RecipientUser' => 'Extloadwiki',
'SenderEmail' => $wgPasswordSender,
'SenderName' => 'Miraheze No Reply',
'RequireDetails' => true,
'IncludeIP' => false, // Lets not do this ever for privacy (unless offical forms)
'AdditionalFields' => array(),
'DisplayFormat' => 'table',
'RLModules' => array(),
'RLStyleModules' => array(),
);
}
if ( $wgDBname == 'ayrshirewiki' ) {
$wgContactConfig['default'] = array(
'RecipientUser' => 'Gordonuk',
'SenderEmail' => $wgPasswordSender,
'SenderName' => 'Miraheze No Reply',
'RequireDetails' => true,
'IncludeIP' => false, // No privy
'AdditionalFields' => array(),
'DisplayFormat' => 'table',
'RLModules' => array(),
'RLStyleModules' => array(),
);
}
if ( $wgDBname == 'christipediawiki' ) {
$wgContactConfig['default'] = array(
'RecipientUser' => 'Kees Langeveld',
'SenderEmail' => $wgPasswordSender,
'SenderName' => 'Miraheze No Reply',
'RequireDetails' => true,
'IncludeIP' => false, // No privy
'AdditionalFields' => array(),
'DisplayFormat' => 'table',
'RLModules' => array(),
'RLStyleModules' => array(),
);
}
if ( $wgDBname == 'fablabesdswiki' ) {
$wgContactConfig['default'] = array(
'RecipientUser' => 'Contact COOP FabLab ESDS',
'SenderEmail' => $wgPasswordSender,
'SenderName' => 'Ne pas répondre FabLab ESDS',
'RequireDetails' => true,
'IncludeIP' => false, // No privy
'AdditionalFields' => array(
'TitreArticleDemande' => array(
'label' => 'Titre de l\'article demandé (si c\'est la cas)',
'type' => 'text',
'required' => false, // Either "true" or "false" as required
),
),
'DisplayFormat' => 'table',
'RLModules' => array(),
'RLStyleModules' => array(),
);
}