forked from JavierGonzalez/POL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
socios.php
executable file
·230 lines (169 loc) · 7.83 KB
/
socios.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
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
<?php # POL.VirtualPol.com — Copyright (c) 2008 Javier González González <[email protected]> — MIT License
exit;
$result = sql_old("SELECT valor, dato FROM config WHERE pais = '".PAIS."' AND autoload = 'no'");
while ($r = r($result)) { $pol['config'][$r['dato']] = $r['valor']; }
if (($_GET[1] == 'configurar') AND (nucleo_acceso($vp['acceso']['control_socios']))) {
// Configuracion del panel de socios
echo '<form action="/accion/socios/configurar" method="POST">
<fieldset><legend>Configurar</legend>
<table>
<tr>
<td align="right"><b>Estado</b></td>
<td><select name="socios_estado"><option value="true">Activado (inscripciones abiertas)</option><option value="false"'.($pol['config']['socios_estado']=='false'?' selected="selected"':'').'>Desactivado (inscripciones cerradas)</option></select></td>
</tr>
<tr>
<td align="right">Cargo asignado a socios</td>
<td><select name="socios_ID">
<option value="0">Ninguno.</option>';
$result = sql_old("SELECT cargo_ID, nombre FROM cargos WHERE pais = '".PAIS."' AND asigna > 0 ORDER BY nivel DESC");
while($r = r($result)) {
echo '<option value="'.$r['cargo_ID'].'"'.($pol['config']['socios_ID']==$r['cargo_ID']?' selected="selected"':'').'>'.$r['nombre'].'</option>';
}
echo '</select>
</tr>
<tr>
<td align="right">Cesión y responsable de datos</td>
<td><input type="text" name="socios_responsable" value="'.$pol['config']['socios_responsable'].'" size="40" maxlength="90" /></td>
</tr>
<tr>
<td align="right" valign="top">Condiciones adicionales</td>
<td><textarea name="socios_descripcion" style="width:500px;height:250px;">
'.strip_tags($pol['config']['socios_descripcion']).'
</textarea></td>
</tr>
<tr>
<td></td>
<td>'.boton('Guardar', 'submit', false, 'blue').'</td>
</tr>
</table>
</fieldset>
</form>';
} elseif ((($_GET[1] == 'inscritos') OR ($_GET[1] == 'asociados')) AND (nucleo_acceso('ciudadanos')) AND (nucleo_acceso($vp['acceso']['control_socios']))) {
// Lista de inscritos
function comprobar_nif($nif) {
$letras = explode(',','T,R,W,A,G,M,Y,F,P,D,X,B,N,J,Z,S,Q,V,H,L,C,K,E');
if (
(strlen($nif)!=9) ||
(!is_long($entero=intval(substr($nif,0,8)))) ||
(!in_array($letra=strtoupper(substr($nif,8,1)),$letras)) ||
($letra!=$letras[$entero%23])
){ return false; } else { return true; }
}
if ($_GET[1] == 'asociados') { $socios = true; } else { $socios = false; }
echo '<table>
<tr>
<th></th>
<th>Asociado</th>
<th>Nick</th>
<th>Nombre</th>
<th>NIF</th>
<th>Email</th>
<th></th>
<th>País</th>
<th>CP</th>
<th></th>
<th></th>
</tr>';
$result = sql_old("SELECT *, (SELECT nick FROM users WHERE ID = socios.user_ID LIMIT 1) AS nick FROM socios WHERE pais = '".PAIS."'".($socios?" AND estado = 'socio'":" AND estado != 'socio'")." LIMIT 10");
while($r = r($result)) {
echo '<tr>
<td nowrap>'.($socios?boton('Rescindir', '/accion/socios/rescindir?ID='.$r['ID'], '¿Estás seguro de querer EXPULSAR a este socio?', 'small red'):boton('Rechazar', '/accion/socios/rescindir?ID='.$r['ID'], '¿Estás seguro de querer ELIMINAR esta inscripción?', 'small red').' '.boton('Aprobar', '/accion/socios/aprobar?ID='.$r['ID'], false, 'small blue')).'</td>
<td>'.$r['pais'].$r['socio_ID'].'</td>
<td>'.crear_link($r['nick']).'</td>
<td nowrap>'.$r['nombre'].'</td>
<td'.(comprobar_nif($r['NIF'])?'':' style="color:red;"').'>'.$r['NIF'].'</td>
<td>'.($r['contacto_email']?'<span title="'.$r['contacto_email'].'">Email</span>':'').'</td>
<td>'.($r['contacto_telefono']?'<span title="'.$r['contacto_telefono'].'">T</span>':'').'</td>
<td class="gris">'.$r['pais_politico'].'</td>
<td class="gris">'.$r['cp'].'</td>
<td class="gris">'.$r['localidad'].'</td>
<td class="gris" nowrap>'.($r['direccion']?'<span title="'.$r['direccion'].'">D</span>':'').'</td>
</tr>';
}
echo '</table>';
} elseif (true) {
$es_socio = false;
$result = sql_old("SELECT ID, estado, socio_ID FROM socios WHERE pais = '".PAIS."' AND user_ID = '".$pol['user_ID']."' LIMIT 1");
while($r = r($result)) { $es_socio = true; $socio_estado = $r['estado']; $socio_numero = PAIS.$r['socio_ID']; }
if (nucleo_acceso('socios')) {
// Eres socio correctamente. Info basica. Botones para eliminar.
echo '<p>Eres socio. Tu numero de asociado es: <b>'.$socio_numero.'</b></p><hr /><p>'.boton('Darse de baja de socio y eliminar datos asociados', '/accion/socios/cancelar', '¿Estás seguro de querer DARTE DE BAJA como socio?', 'red').'</p>';
} elseif (nucleo_acceso('ciudadanos')) {
// Formulario para ser socio
if ($es_socio) {
echo '<p>¡Correcto! Tu inscripción de socio está en cola de aprobación.</p><hr /><p>'.boton('Cancelar inscripción y eliminar datos asociados', '/accion/socios/cancelar', false, 'red').'</p>';
} elseif ($pol['config']['socios_estado'] == 'true') {
$result = sql_old("SELECT email, nombre FROM users WHERE ID = '".$pol['user_ID']."' LIMIT 1");
while($r = r($result)) { $email = $r['email']; $nombre = $r['nombre']; }
echo '<form action="/accion/socios/inscribirse" method="POST">
<fieldset><legend>Inscripción de socio de '.PAIS.'</legend>
<table>
<tr>
<td align="right">Nombre completo</td>
<td><input type="text" name="nombre" value="'.(strlen($nombre)>2?$nombre:'').'" size="30" maxlength="90" required /></td>
</tr>
<tr>
<td align="right">NIF</td>
<td class="gris"><input type="text" name="NIF" value="" size="10" maxlength="10" placeholder="123456789A" pattern="[0-9]{8,9}[A-Z]{1}" required /> Ejemplo: 123456789A</td>
</tr>
</table>
<fieldset><legend>Lugar</legend>
<table>
<tr>
<td align="right">País</td>
<td><select name="pais_politico"><option value="ESP">España</option></select></td>
</tr>
<tr>
<td align="right">Localidad</td>
<td><input type="text" name="localidad" value="" size="15" maxlength="20" required /></td>
</tr>
<tr>
<td align="right">Código postal</td>
<td><input type="text" name="cp" value="" size="5" maxlength="8" pattern="[0-9]{5,6}" required /></td>
</tr>
<tr>
<td align="right">Domicilio</td>
<td><input type="text" name="direccion" value="" size="40" maxlength="90" /> (opcional)</td>
</tr>
</table>
</fieldset>
<fieldset><legend>Contacto</legend>
<table>
<tr>
<td align="right">Dirección de email</td>
<td><input type="email" name="contacto_email" value="'.$email.'" size="30" maxlength="90" required /></td>
</tr>
<tr>
<td align="right">Teléfono</td>
<td><input type="tel" name="contacto_telefono" value="" size="15" maxlength="10" pattern="[0-9+]{9,13}" /> (opcional)</td>
</tr>
</table>
</fieldset>
<blockquote>
<p>
* Serás socio tras un proceso de aprobación.<br />
'.($pol['config']['socios_responsable']?'* Los datos introducidos en este formulario serán cedidos a: <b>'.$pol['config']['socios_responsable'].'</b>.<br />':'').'
* Podrás dejar de ser socio y eliminar todos los datos asociados en cualquier momento.
</p>
<p class="rich">'.$pol['config']['socios_descripcion'].'</p>
<p><input type="checkbox" name="aprobado" value="true" required /> <b>He leído y acepto las condiciones.</b></p>
</blockquote>
<p>'.boton('Inscribirse como socio de '.$pol['config']['pais_des'], 'submit', false, 'large blue').'</p>
</fieldset>
</form>';
} else { echo '<p>Las inscripciones para socio estan cerradas temporalmente.</p>'; }
} else { echo '<p>Debes ser ciudadano de '.PAIS.' para poder inscribirte como socio.</p>'; }
} else { echo '<p>Debes estar registrado para poder inscribirte como socio.</p>'; }
if (nucleo_acceso($vp['acceso']['control_socios'])) {
$contador['socio'] = 0; $contador['inscrito'] = 0;
$result = mysql_query_old("SELECT COUNT(*) AS num, estado FROM socios WHERE pais = '".PAIS."' GROUP BY estado", $link);
while($r = mysqli_fetch_array($result)){ $contador[$r['estado']] = $r['num']; }
$txt_tab['/socios/inscritos'] = 'Pendientes ('.$contador['inscrito'].')';
$txt_tab['/socios/asociados'] = 'Asociados ('.$contador['socio'].')';
$txt_tab['/socios/configurar'] = 'Configurar';
}
//THEME
$txt_title = _('Socios');
$txt_nav = array('/socios'=>'Socios');
$txt_menu = 'demo';
?>