forked from OGSteam/mod-attaques
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_user.php
71 lines (62 loc) · 2.43 KB
/
config_user.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
65
66
67
68
69
70
71
<?php
/**
* config.php Page de configuration utilisateur
*
* @package Attaques
* @author ericc
* @link http://www.ogsteam.fr
* @version : 0.8e
*/
// L'appel direct est interdit....
if (!defined('IN_SPYOGAME')) die("Hacking attempt");
global $db, $table_prefix;
// lecture des configs dans la db
$user_config['diffusion_rapports'] = mod_get_user_option($user_data["user_id"],"diffusion_rapports" );
$user_config['masquer_coord'] = mod_get_user_option($user_data["user_id"], "masquer_coord");
// Paramètres de configurations transmis par le form
if (isset($pub_submit)) {
$diffusion = isset($pub_diffusion) && $pub_diffusion == true ? 1 : 0;
mod_set_user_option( $user_data['user_id'],'diffusion_rapports', $diffusion);
$user_config['diffusion_rapports'] = $diffusion;
$masquer_coord = isset($pub_masquer_coord) && $pub_masquer_coord == true ? 1 : 0;
mod_set_user_option( $user_data['user_id'], 'masquer_coord', $masquer_coord);
$user_config['masquer_coord'] = $masquer_coord;
echo "<span style=\"font-size: x-small; color: #00FF40; \">Configuration sauvegardée</span><br />";
}
// Fin paramètres de configuration
// cadre autour des paramètres
echo "<fieldset><legend><b><span style=\"color: #0080FF; \">Configuration ";
echo help("user_config");
echo "</font></b></legend>";
// Formulaire des paramètres du module
echo "<form name='form1' style=\"margin:0px;padding:0px; alignment: center;\" action='index.php?action=attaques&page=config' enctype='multipart/form-data' method='post'>";
echo "<table width='60%' border='0'>
<tr>
<td class='c' colspan='2'>Paramètres de visibilité</td>
</tr>
<tr>
<th>Diffuser les rapports " . help("diffusion_rapports") . " : </th>
<th><input type='checkbox' name='diffusion' value='true' ";
if (isset($user_config['diffusion_rapports']) && $user_config['diffusion_rapports'] == 1) {
echo 'checked=checked';
}
echo "></th>
</tr>
<tr>
<th> Masquer les coordonnees " . help("masquer_coord") . " : </th>
<th><input type='checkbox' name='masquer_coord' value='true' ";
if (isset($user_config['masquer_coord']) && $user_config['masquer_coord'] == 1) {
echo 'checked=checked';
}
echo "></th>
</tr>
<tr>
<td class='c' colspan='2'> </td>
</tr>
<tr>
<tr>
<td colspan='2' class='c' align='center'><input name='submit' type='submit' value='Envoyer'></td>
</tr>
";
echo "</table></form>";
echo "</center></fieldset>";