Ciao a tutti,
ho installato questa mod:
Codice:
## MOD Title: Last Visited Date on Memberlist
## MOD Author: iWisdom < admin@p3net.net > (n/a) http://p3net.net
## MOD Description: Show the last Visit Date for a user on the memberlist
## MOD Version: 1.0.1
#-----[ OPEN ]------------------------------------------
#
memberlist.php
#
#-----[ FIND ]------------------------------------------
#
$sql = "SELECT username, user_id, user_viewemail, user_posts, user_regdate, user_from, user_website, user_email, user_icq, user_aim, user_yim, user_msnm, user_avatar, user_avatar_type, user_allowavatar,
FROM " . USERS_TABLE . "
WHERE user_id <> " . ANONYMOUS . "
ORDER BY $order_by";
#
#-----[ IN-LINE FIND ]------------------------------------------
#
username,
#
#-----[ AFTER, ADD ]------------------------------------------
#
user_lastvisit,
#
#-----[ FIND ]------------------------------------------
#
$user_id = $row['user_id'];
#
#-----[ AFTER, ADD ]------------------------------------------
#
# If you don't like the date syntax in $lastvisit you can edit it according to the php date() function -- just make sure you know what you're doing!
//Begin Last Visit Date on Memberlist
if($row['user_lastvisit'] != "0")
{
$lastvisit=date("d/m/Y", $row['user_lastvisit']);
}
//End Last Visit Date on Memberlist
else
{
$lastvisit=L_NOVISIT;
}
#
#-----[ FIND ]------------------------------------------
#
'YIM' => $yim,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'LAST_VISIT' => $lastvisit,
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/memberlist_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<th class="thTop" nowrap="nowrap">{L_JOINED}</th>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<th class="thTop" nowrap="nowrap">{L_LASTVISIT}</th>
#
#-----[ FIND ]------------------------------------------
#
<td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gensmall">{memberrow.JOINED}</span></td>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gensmall">{memberrow.LAST_VISIT}</span></td>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//
// That's all, Folks!
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//Last Visit Date on Memberlist
$lang['lastvisit'] = 'Ultima Visita';
$lang['novisit'] = 'Mai';
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),
#
#-----[ AFTER, ADD ]------------------------------------------
#
'L_LASTVISIT' => $lang['lastvisit'],
'L_NOVISIT' => $lang['novisit'],
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Volevo chiedervi se fosse possibile, sempre in "memberlist",
poter aggiungere l'ordinamento utenti ,
proprio per ultima visita.
Mi spiego meglio,
cliccando su "utenti" ,
viene visualizzata la lista utenti (giustamente),
poi, sopra la lista utenti, c'è l'opzione di poter visualizzare appunto l'ordine degli utenti mediante:
Data di Registrazione
Username
Località
messaggi totali
email
ecc ecc ,
vorrei sapere se fosse possibile aggiungere tra questi l'opportunità di ordinare gli utenti per ultima visita, è possibile ciò?
Se si, chi mi spiega come e cosa devo modificare?
Grazie a tutti.