-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathperfil.php
executable file
·483 lines (346 loc) · 17.4 KB
/
perfil.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
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?php # POL.VirtualPol.com — Copyright (c) 2008 Javier González González <[email protected]> — MIT License
if (($_GET[1] == 'editar') AND (isset($pol['nick']))) { redirect('/perfil/'.$pol['nick'].'/editar'); }
if ((!$_GET[1]) AND (isset($pol['nick']))) { redirect('/perfil/'.$pol['nick']); }
$result = sql_old("SELECT *,
(SELECT siglas FROM partidos WHERE pais = '".PAIS."' AND ID = users.partido_afiliado LIMIT 1) AS partido,
(SELECT COUNT(ID) FROM ".SQL."foros_hilos WHERE user_ID = users.ID LIMIT 1) AS num_hilos,
(SELECT COUNT(ID) FROM ".SQL."foros_msg WHERE user_ID = users.ID LIMIT 1) AS num_msg
FROM users
WHERE nick = '".$_GET[1]."'
LIMIT 1");
while($r = r($result)){
$nick = $r['nick'];
$user_ID = $r['ID'];
if ((PAIS != $r['pais']) AND ($r['estado'] == 'ciudadano') AND ($r['pais'] != 'ninguno')) {
redirect(vp_url('/perfil/'.$nick, $r['pais']));
} elseif ($user_ID) { // usuario ok
if (($r['socio'] == 'true') AND (nucleo_acceso('socios'))) {
$result2 = sql_old("SELECT socio_ID, PAIS FROM socios WHERE pais = '".PAIS."' AND user_ID = '".$r['ID']."' LIMIT 1");
while ($r2 = r($result2)) { $socio_ID = PAIS.$r2['socio_ID']; }
}
if ($r['estado'] == 'expulsado') {
$razon = false;
$result2 = sql_old("SELECT razon FROM expulsiones WHERE estado='expulsado' and user_ID = '".$r['ID']."' ORDER BY expire DESC LIMIT 1");
while ($r2 = r($result2)) { $razon = $r2['razon']; }
}
echo '<div style="width:750px;"><table width="100%">';
if (nucleo_acceso('supervisores_censo')) { // INFO PARA SC
echo '<tr><td>
<div style="float:right;">
<form action="/accion/SC/nota?ID='.$r['ID'].'" method="post">
<input type="text" name="nota_SC" size="25" maxlength="255" value="'.$r['nota_SC'].'" />
'.boton(_('OK'), 'submit', false, 'pill small').'
'.boton('Filtrar', '/sc/filtro/user_ID/'.$r['ID'], false, 'blue small').'
'.boton('Expulsar', '/control/expulsiones/expulsar/'.$r['nick'], false, 'red small').'
Expulsion temporal
'.boton('Kickear', '/control/kick/sc/'.$r['nick'], false, 'red small').'
</form>
</div>
'.$r['ID'].' <span title="'.$r['avatar_localdir'].'" style="font-size:11px;">'.$r['email'].'</span> <span style="font-size:12px;" title="'.$r['nav'].'">'.num($r['visitas']).'v '.num($r['paginas']).'pv<br /><a href="http://www.geoiptool.com/es/?IP='.($r['IP']+rand(-30,30)).'">'.ocultar_IP($r['host'], 'host').'</a></span>
</td></tr>';
}
// ***************
// START ZONA EDIT
if ($user_ID == $pol['user_ID']) { //es USER
$result2 = sql_old("SELECT valor FROM config WHERE pais = '".PAIS."' AND dato = 'pols_afiliacion' LIMIT 1");
while($r2 = r($result2)){ if ($r2['pols'] >= $pols) { $pols_afiliacion = $r2['valor']; } }
$text_limit = 1600 - strlen(strip_tags($r['text']));
echo '<tr><td><p style="text-align:center;"><button onclick="$(\'#editarperfil\').slideToggle(\'slow\');" style="font-weight:bold;" class="pill">'._('Editar perfil').'</button> '.boton(_('Opciones de usuario'), '/registrar/login/panel').' '.($pol['pais']!='ninguno'?boton(_('Cambiar ciudadanía'), '/registrar', false, 'red').' ':'').'<p>
<div id="editarperfil"'.($_GET[2]=='editar'?' ':' style="display:none;"').'>
<fieldset><legend>'._('Editar perfil').'</legend>
<fieldset><legend>'._('Tu nombre').'</legend>
<form action="/accion/perfil/nombre" method="post">
<p>Introduce tu nombre y apellidos. No es obligatorio, pero debe ser veráz. Será visible para los ciudadanos de '.PAIS.'.<br />
<input type="text" name="nombre" value="" size="40" maxlength="90" placeholder="'.$r['nombre'].'" required />
'.boton(_('Guardar'), 'submit', false, 'blue').'
</form></p>
</fieldset>';
if (ECONOMIA) {
$result2 = sql_old("SELECT valor, dato FROM config WHERE pais = '".PAIS."' AND dato = 'impuestos' OR dato = 'impuestos_minimo'");
while($r2 = r($result2)){ $pol['config'][$r2['dato']] = $r2['valor']; }
$patrimonio = $r['pols'];
$patrimonio_libre_impuestos = 0;
echo '
<fieldset><legend>'._('Tu economía').'</legend>
<table border="0">
<tr>
<td align="right">'._('Personal').'</td>
<td align="right">'.pols($r['pols']).' '.MONEDA.'</td>
<td><a href="/pols">'._('Info').'</a></td>
</tr>';
$result2 = sql_old("SELECT ID, pols, nombre, exenta_impuestos FROM cuentas WHERE pais = '".PAIS."' AND user_ID = '".$r['ID']."'");
while($r2 = r($result2)){
if ($r2['exenta_impuestos'] == 1) {
$patrimonio_libre_impuestos += $r2['pols'];
$sin_impuestos = ' - <em style="#AAA">'._('Sin impuestos').'</em>';
}
else {
$sin_impuestos = '';
}
$patrimonio += $r2['pols'];
echo '
<tr>
<td align="right">'._('Cuenta').'</td>
<td align="right">'.pols($r2['pols']).' '.MONEDA.'</td>
<td><a href="/pols/cuentas/'.$r2['ID'].'"><em>'.$r2['nombre'].'</em></a>'.$sin_impuestos.'</td>
</tr>';
}
$patrimonio_con_impuestos = $patrimonio - $patrimonio_libre_impuestos;
if ($patrimonio_con_impuestos >= $pol['config']['impuestos_minimo']) {
if ($pol['config']['impuestos_minimo'] < 0) { $patrimonio_con_impuestos -= $pol['config']['impuestos_minimo']; }
$impuesto = ceil( ( $patrimonio_con_impuestos * $pol['config']['impuestos']) / 100);
$impuestos = '<em>'._('Impuestos al día').': '.pols(-$impuesto).' '.MONEDA.'</em>';
} else {
$impuestos = '<em style="#AAA">'._('Sin impuestos').'.</em>';
}
echo '
<tr><td></td><td><hr style="border:1px solid #AAA; margin:-3px; padding:0;" /></td><td></td></tr>
<tr>
<td align="right">'._('Patrimonio total').'</td>
<td align="right">' . pols($patrimonio) . ' '.MONEDA.'</td>
<td> '.$impuestos.'</td>
</tr>
</table>
</fieldset>
<fieldset><legend>'._('Referencia').'</legend>
<p><input style="background:#FFFFDD;border: 1px solid grey;" type="text" size="35" value="http://'.HOST.'/r/' . strtolower($nick) . '/" readonly="readonly" /><br />
(Ganarás <b>' . pols($pols_afiliacion) . ' '.MONEDA.'</b> por cada nuevo Ciudadano autentico que se registre por este enlace y cumpla el minimo tiempo online en sus 30 primeros dias)</p>
</fieldset>';
} // fin ECONOMIA
echo '
<fieldset><legend>'._('Biografía').'</legend>
<form action="/accion/avatar/desc" method="post">
<p><textarea name="desc" id="desc_area" style="width:500px;height:150px;" required>'.strip_tags($r['text'], '<b>').'</textarea><br />
'.boton(_('Guardar'), 'submit', false, 'blue').' (<span id="desc_limit" style="color:blue;">'.$text_limit.'</span> '._('caracteres').')
</form></p>
</fieldset>
'.(!isset($r['x'])?'
<fieldset><legend>'._('Geolocalización').'</legend>
<p>'.boton(_('Sitúate en el mapa de usuarios'), '/geolocalizacion/fijar', false, 'large blue').'</p>
</fieldset>
':'').'
<fieldset><legend>'._('Tus perfiles en otras redes sociales').'</legend>
<form action="/accion/perfil/datos" method="POST">
<table border="0">
<tr>
<td colspan="2"><b>'._('Perfiles').'</b></td>
<td> <b>'._('Solo direcciones web').'</b> (<span style="color:red;">'._('Debe empezar por').': <span style="font-weight:bold;">http://</span> o <span style="font-weight:bold;">https://</span></span>)</td>
</tr>';
// DATOS DE PERFIL
$datos = explode('][', $r['datos']);
foreach ($datos_perfil AS $id => $dato) {
if ($dato != '') {
echo '<tr><td align="right">'.$dato.'</td><td><img src="'.IMG.'ico/'.$id.'_32.png" width="32" width="32" alt="'.$datos.'" /></td><td><input type="url" name="'.$dato.'" value="'.$datos[$id].'" size="60" placeholder="http://" /></td></tr>';
}
}
echo '
<tr><td colspan="2"></td><td>'.boton(_('Guardar'), 'submit', false, 'blue').'</td></tr>
</table>
</form>
</fieldset>
<fieldset><legend>Avatar ('._('tu foto').')</legend>
<form action="/accion/avatar/upload" method="post" enctype="multipart/form-data">
<p><input name="avatar" type="file" required /> '.boton(_('Guardar'), 'submit', false, 'blue').' | ' . boton(_('Borrar avatar'), '/accion/avatar/borrar', false, 'red') . ' (jpg, max 1mb)</p>
</form>
</fieldset>';
// numero de votos emitidos
$result2 = sql_old("SELECT COUNT(*) AS num FROM votos WHERE tipo = 'confianza' AND emisor_ID = '".$pol['user_ID']."' AND voto != '0'");
while ($r2 = r($result2)) { $num_votos = $r2['num']; }
echo '<fieldset><legend>'._('Votos de confianza emitidos').' ('.$num_votos.' '._('de').' '.VOTO_CONFIANZA_MAX.')</legend><p>';
$voto_anterior = '';
$result2 = sql_old("SELECT voto, time,
(SELECT nick FROM users WHERE ID = v.item_ID LIMIT 1) AS nick,
(SELECT pais FROM users WHERE ID = v.item_ID LIMIT 1) AS pais
FROM votos `v`
WHERE tipo = 'confianza' AND emisor_ID = '".$user_ID."' AND voto != 0
ORDER BY voto DESC, time ASC");
while($r2 = r($result2)) {
if ($voto_anterior != $r2['voto']) { echo '<br /> ' . confianza($r2['voto']) . ' · '; }
$voto_anterior = $r2['voto'];
echo crear_link($r2['nick'], 'nick', null, $r2['pais']) . ' ';
}
echo '</p></fieldset>';
echo '<fieldset><legend>Clave API</legend><input class="api_box" type="text" size="12" value="'.$r['api_pass'].'" readonly="readonly" /> '.boton('Generar clave', '/accion/api/gen_pass', '¿Seguro que deseas CAMBIAR tu clave API?\n\nLa antigua dejará de funcionar.', 'blue').' (Equivale a tu contraseña, mantenla en secreto. Más info: <a href="'.SSL_URL.'api.php">API</a>)</fieldset>';
if (!ASAMBLEA) {
echo '<form action="/accion/afiliarse" method="post">
<fieldset><legend>'._('Afiliación').'</legend>
<p><select name="partido"><option value="0">'._('Ninguno').'</option>';
$result2 = sql_old("SELECT ID, siglas FROM partidos WHERE pais = '".PAIS."' ORDER BY siglas ASC");
while($r2 = r($result2)){
echo '<option value="'.$r2['ID'].'"'.($r2['ID']==$pol['partido']?' selected="selected"':'').'>' . $r2['siglas'] . '</option>';
}
echo '
</select>
<input value="'._('Afiliarse').'" type="submit"'.($pol['config']['elecciones_estado']=='elecciones'?' disabled="disabled"':'').'>
</form>
</p></fieldset>';
}
echo '</fieldset></div>';
echo '</td></tr>';
}
// FIN ZONA EDIT
// *************
echo '
<tr>
<td align="center"><h1>'.$nick.''.($r['dnie']=='true'?' <span class="icon medium" style="color:#339900;" data-icon="l" title="Autentificado"></span>':'').(isset($r['nombre'])&&nucleo_acceso('ciudadanos')?' <span style="color:#BBB;font-size:18px;">'.$r['nombre'].'</span>':'').'</h1>
<span style="color:grey;font-size:22px;"><b><span'.($r['estado']!='ciudadano'?' class="'.$r['estado'].'"':'').'>'.($r['estado']=='expulsado'&&$razon==false?_('Auto-eliminado'):ucfirst($r['estado'])).'</span> '.($r['estado']!='expulsado'?''._('de').' '.$pol['config']['pais_des']:'').'</b></span>
</td>
</tr>
<tr>
<td align="center" nowrap>
'.($r['avatar']=='true'?'<img src="'.IMG.'a/'.$r['ID'].'.jpg" alt="'.$nick.'" title="Avatar" width="120" height="120" style="border:1px solid #AAA;" />':'').'
'.(nucleo_acceso('ciudadanos_global')&&is_numeric($r['x'])?'<a href="http://maps.google.es/maps?q='.$r['y'].','.$r['x'].'&hl=es&t=m" target="_blank"><img width="250" height="120" class="static_map" style="border:1px solid #AAA;" src="//maps.google.com/maps/api/staticmap?
center='.$r['y'].','.$r['x'].'&zoom=11&size=250x120&maptype=roadmap&sensor=false&markers=icon:'.IMG.'ico/marker.png|'.$r['y'].','.$r['x'].'" alt="Geo" title="Geolocalización" /></a>':'').'
'.(str_replace(array('0', ' '), '', $r['confianza_historico'])!=''?'
<img src="https://chart.googleapis.com/chart
?chs=250x120
&chf=bg,s,F4F4F4
&chm=B,FFFFFF,0,0,0
&cht=lc
&chco=EA9800
&chls=5|1
&chma=10,10
&chds=a
&chd=t:'.implode(',', explode(' ', trim($r['confianza_historico']))).'
&chxt=x
&chxl=0:|'.implode('|', explode(' ', trim($r['confianza_historico']))).'
" width="250" height="120" alt="Confianza historico" title="Confianza semanal" style="border:1px solid #AAA;" />':'').'
</td>
</tr>
</table>
<table width="100%" class="gris">
<tr>
<td align="right">'._('Confianza').':</td>
<td>';
// CONFIANZA
if ((($user_ID != $pol['user_ID']) AND ($pol['user_ID']) AND ($pol['estado'] != 'expulsado'))) {
// numero de votos emitidos
$result2 = sql_old("SELECT COUNT(*) AS num FROM votos WHERE tipo = 'confianza' AND emisor_ID = '".$pol['user_ID']."' AND voto != '0'");
while ($r2 = r($result2)) { $num_votos = $r2['num']; }
$result2 = sql_old("SELECT voto FROM votos WHERE tipo = 'confianza' AND emisor_ID = '".$pol['user_ID']."' AND item_ID = '".$user_ID."' LIMIT 1");
while ($r2 = r($result2)) { $hay_v_c = $r2['voto']; }
if (!$hay_v_c) { $hay_v_c = '0'; }
echo confianza($r['voto_confianza']).'
<span id="data_confianza'.$user_ID.'" class="votar" type="confianza" name="'.$user_ID.'" value="'.$hay_v_c.'"></span><br />
<span style="font-size:12px;">'._('Emitidos').' <b'.($num_votos <= VOTO_CONFIANZA_MAX?'':' style="color:red;"').'>'.$num_votos.'</b> '._('de').' '.VOTO_CONFIANZA_MAX.'</span>';
} else { echo confianza($r['voto_confianza']); }
echo '</td>
<td align="right" nowrap>'._('Redes sociales').':</td>
<td>';
$datos_n = 0;
$datos = explode('][', $r['datos']);
foreach ($datos_perfil AS $id => $dato) {
if ($datos[$id] != '') { $datos_n++; echo '<a href="'.$datos[$id].'" target="_blank"><img src="'.IMG.'ico/'.$id.'_32.png" width="32" height="32" alt="'.$datos.'" /></a> '; }
}
if ($datos_n == 0) { echo '<b>'._('Ninguna').'</b>'; }
echo '</td>
</tr>
<tr>
<td align="right">'._('Último acceso').':</td>';
if ($r['modo_invisible'] == "false"){
echo '<td><b>'.timer($r['fecha_last']).'</b></td>';
}else{
echo '<td><b>--</b></td>';
}
echo '<td align="right" title="Elecciones en las que ha participado: '.$r['num_elec'].'">'._('Cargos').':</td>
<td><b>';
$result2 = sql_old("SELECT cargo_ID, cargo, nota,
(SELECT nombre FROM cargos WHERE pais = '".PAIS."' AND cargo_ID = cargos_users.cargo_ID LIMIT 1) AS nombre,
(SELECT nivel FROM cargos WHERE pais = '".PAIS."' AND cargo_ID = cargos_users.cargo_ID LIMIT 1) AS nivel
FROM cargos_users
WHERE pais = '".PAIS."' AND user_ID = '".$user_ID."' AND (cargo = 'true' OR aprobado = 'ok')
ORDER BY nivel DESC");
while($r2 = r($result2)) {
if ($r2['cargo'] == 'true') {
$txt_cargos[] = '<a href="/cargos/'.$r2['cargo_ID'].'"><img src="'.IMG.'cargos/'.$r2['cargo_ID'].'.gif" width="16" height="16" alt="'.$r2['nombre'].'" title="'.$r2['nombre'].' ('.$r2['nota'].')" /></a>';
} else {
$txt_cand[] = '<a href="/cargos/'.$r2['cargo_ID'].'"><img src="'.IMG.'cargos/'.$r2['cargo_ID'].'.gif" width="16" height="16" alt="'.$r2['nombre'].'" title="'.$r2['nombre'].' ('.$r2['nota'].')" /></a>';
}
}
echo (count((array)$txt_cargos)>0?implode(' ', $txt_cargos):_('Ninguno')).'</b></td>
</tr>
<tr>
<td align="right">'._('Tiempo online').':</td>
<td><b>'.timer(time()-$r['online'], true).'</b> <span title="'.num($r['paginas']).' páginas vistas">('.num($r['visitas']).' '._('visitas').')</span></td>
<td align="right" title="Nota media: '.$r['nota'].'">'._('Candidaturas').':</td>
<td><b>'.(count((array)$txt_cand)>0?implode(' ', $txt_cand):_('Ninguna')).'</b></td>
</tr>
<tr>
<td align="right">'._('Registrado').' '._('hace').':</td>
<td><b>'.timer($r['fecha_registro']).'</b></td>
<td align="right" title="Expiración por inactividad">'._('Expiración').':</td>
<td><b>';
/* Expiraciones:
Tras 90 dias inactivo
Excepciones:
* Autentificados
* Socios
* Donantes
* Veteranos (más de 2 años de antiguedad)
*/
if ($r['fecha_registro'] < tiempo(365*2)) { echo _('Vitalicio').' ('._('veterano').')'; }
elseif ($r['dnie'] == 'true') { echo _('Vitalicio').' ('._('autentificado').')'; }
elseif ($r['socio'] == 'true') { echo _('Vitalicio').' ('._('asociado').')'; }
elseif ($r['donacion'] > 0) { echo _('Vitalicio').' ('._('donante').')'; }
else { echo _('En').' '.num(90-((time()-strtotime($r['fecha_last']))/60/60/24)).' '._('días'); }
echo '</b></td>
</tr>
<tr>
<td align="right">'._('Foro').':</td>
<td><a href="/foro/mis-respuestas/'.$r['nick'].'"><b>'.num($r['num_hilos']).' '._('hilos').' / '.num($r['num_msg']).' '._('mensajes').'</b></a></td>
<td align="right">'._('Grupos').':</td>
<td><b>';
$txt_grupos = array();
if ($r['grupos']) {
$result2 = sql_old("SELECT nombre FROM grupos WHERE grupo_ID IN (".str_replace(' ', ',', $r['grupos']).")");
while ($r2 = r($result2)) { $txt_grupos[] = '<a href="/grupos">'.$r2['nombre'].'</a>'; }
}
echo (count($txt_grupos)>0?implode(' ', $txt_grupos):_('Ninguno')).'</b></td>
</tr>
<tr>
<td colspan="2" align="right" >Partido: <a href="/partidos/'.strtolower($r['partido']).'"><b>'.$r['partido'].'</b></a></td>
</tr>
<tr>
<td colspan="2" width="50%"></td>
<td colspan="2" width="50%"></td>
</tr>
</table>
'.($r['text']!=''&&nucleo_acceso('ciudadanos_global')?'<fieldset><legend>'._('Biografía').'</legend><p>'.$r['text'].'</p></fieldset>':'').'
</div>';
$txt_title = $nick.' - '.ucfirst($r['estado']) . ' '._('de').' '.$r['pais'];
$txt_nav = array('/info/censo'=>_('Censo'), '/perfil/'.$nick=>$nick);
if ($user_ID != $pol['user_ID']) {
$txt_tab['/msg/'.$nick] = _('Enviar mensaje');
if (ECONOMIA) { $txt_tab['/pols/transferir/'.strtolower($nick)] = _('Transferir'); }
}
} else {
header("HTTP/1.0 404 Not Found");
exit;
}
}
$txt_header .= '<style type="text/css">
#content { color:#333; }
.api_box { border: 1px solid grey; text-align:center; background:#FFFFDD; color:#FFFFDD; }
.api_box:hover { color:green; }
</style>
<script language="javascript">
function limitChars(textid, limit, infodiv) {
var text = $("#"+textid).val();
var textlength = text.length;
if(textlength >= limit) {
$("#" + infodiv).html("<span style=\"color:red;\">0</span>");
$("#" + textid).val(text.substr(0,limit));
return false;
} else {
$("#" + infodiv).html("<span style=\"color:blue;\">"+ (limit - textlength) +"</span>");
return true;
}
}
window.onload = function(){
$("#desc_area").keyup(function(){
limitChars("desc_area", 1300, "desc_limit");
})
}
</script>
';
$txt_menu = 'info';