
Indicador de escala para los mensajes privados
Para dle: 9.x
Por Phoskyto
Instalación:
Abrir el archivo engine/modules/pm.php:
Encontrar:
Insertar por debajo:
if ($limits<50) $color = "#0C0";
elseif ($limits>=50 and $limits<60) $color = "#FC0";
elseif ($limits>=60 and $limits<75) $color = "#F90";
elseif ($limits>=75 and $limits<85) $color = "#F60";
elseif ($limits>=85 and $limits<95) $color = "#F30";
else $color = "#F00";
$limit = <<<HTML
<table cellpadding="2" cellspacing="0">
<tr class="nowrap fV f10" valign="bottom">
<td>0%</td>
<td width="100" align="center"><div align="center"><strong>{$limits}%</strong> ({$member_id['pm_all']})</div><div style="border:#666 1px solid; width:100px; height:5px; text-align:left;"><div style="height:5px; overflow:hidden; width:{$limits}px; background-color:{$color};"> </div></div></td>
<td>100%</td>
</tr>
</table>
HTML;
$tpl->set( '{limit}', $limit );
Abrir el archivo templates/su_template/css/engine.css al final del archivo
Añadir:
.fV {font-family:Verdana, Geneva, sans-serif;}
.f10 {font-size:10px;}
Abrir el archivo templates/su_template/pm.tpl y en el lugar mas aproviado colocar






















