Darathor
Citation :
But : Si le nombre maximum de message autorisé dnas la boîte d'archive est réduit à 0, cette boîte n'apparaitra plus dans la liste des boîtes MP. De plus, les boutons destinés à archiver des MPs seront supprimés.
Auteur : Darathor (darathor@free.fr)
Version : 1.0 (02/09/2005)
Compatibilité phpBB : 2.0.17
Validité HTML : XHTML 1.1
Dans "privmsg.php" :
Code :
#
# Trouver
#
// ----------
// Start main
#
# Ajouter avant
#
// DEBUT MOD Hide savebox
if($board_config['max_savebox_privmsgs'] > 0)
{
$template->assign_block_vars('switch_savebox_allowed', array());
}
// FIN MOD Hide savebox
Dans "templates/subsilver/privmsgs_body.tpl
Code :
#
# Trouver
#
<td>{SAVEBOX_IMG}</td>
<td><span class="cattitle">{SAVEBOX} </span></td>
#
# Remplacer par
#
<!-- BEGIN switch_savebox_allowed -->
<td>{SAVEBOX_IMG}</td>
<td><span class="cattitle">{SAVEBOX} </span></td>
<!-- END switch_savebox_allowed -->
#
# Trouver
#
<input type="submit" name="save" value="{L_SAVE_MARKED}" class="mainoption" />
#
# Remplacer par
#
<!-- BEGIN switch_savebox_allowed -->
<input type="submit" name="save" value="{L_SAVE_MARKED}" class="mainoption" />
<!-- END switch_savebox_allowed -->
Dans "templates/subsilver/privmasgs_read_body.tpl" :
Code :
#
# Trouver
#
<td valign="middle">{SAVEBOX_IMG}</td>
<td valign="middle"><span class="cattitle">{SAVEBOX}</span></td>
#
# Remplacer par
#
<!-- BEGIN switch_savebox_allowed -->
<td valign="middle">{SAVEBOX_IMG}</td>
<td valign="middle"><span class="cattitle">{SAVEBOX}</span></td>
<!-- END switch_savebox_allowed -->
#
# Trouver
#
<input type="submit" name="save" value="{L_SAVE_MSG}" class="liteoption" />
#
# Remplacer par
#
<!-- BEGIN switch_savebox_allowed -->
<input type="submit" name="save" value="{L_SAVE_MSG}" class="liteoption" />
<!-- END switch_savebox_allowed -->