Membres connectés récemment
[PHPBB2] Afficher le nom du Pseudo sur la page de modération des sujets
2 participants
Page 1 sur 1 • Partagez
- Version du forum :PHPBB2
- Templates modifiés :oui
- Navigateur :Firefox
Tout d'abord Salut tout le monde je suis de retour et en pleine santé c'est le principal et vous en souhaite autant mes amis ...
J'ai une demande au sujet dans les rubriques soit:
quand je vais pour supprimer par exemple plusieurs sujets d'une rubrique je vais sur modérer(en allant dans le PA) et ensuite j'ai tous les sujets mais, le soucis est que je ne sais pas qui l'a fait donc comment faire pour avoir le pseudo sur le sujet afin de supprimer le bon sans devoir retourner en arrière pour le voir ?
Merci à vous bonne soirée dédé
J'ai une demande au sujet dans les rubriques soit:
quand je vais pour supprimer par exemple plusieurs sujets d'une rubrique je vais sur modérer(en allant dans le PA) et ensuite j'ai tous les sujets mais, le soucis est que je ne sais pas qui l'a fait donc comment faire pour avoir le pseudo sur le sujet afin de supprimer le bon sans devoir retourner en arrière pour le voir ?
Merci à vous bonne soirée dédé
Hello Dédé,
alors , on va juste intervenir dans le template concerné pour afficher le pseudo:
Dans le template modcp_body:
Affichage/Templates/Modération/modcp_body
Remplaces tout le contenu par:
Penser a enregistrer puis à valider en cliquant respectivement sur puis
L'aperçu imagé:
Ou ce contenu qui affichera le lien du sujet (qui s'ouvrira dans une nouvelle fenêtre) avec le nom du Pseudo:
L'aperçu imagé:
Et voilou cher ami.
alors , on va juste intervenir dans le template concerné pour afficher le pseudo:
Dans le template modcp_body:
Affichage/Templates/Modération/modcp_body
Remplaces tout le contenu par:
- Code:
<form name="manage" action="{S_MODCP_ACTION}" method="post">
<script>
$(function(){
var moder=$('form[name="manage"]').length;
if(moder)
{
$('span[class="topictitle"]').each(function(){
var $this=$(this);
var a="/t";
var b=$(this).closest('tr').find('td').last().find('input[type="checkbox"]').val();
var c="-";
var d=$(this).text();
var D= d.replace(/ /gi, '-');
var all=a+b+c+D;
$.get(all , function(data){var h= $(data).find('span.name:first').text();
$this.next().append('Posté par: '+h+'');
});
});
}
});
</script>
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
<tr>
<td><span class="nav"><a class="nav" href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}</span></td>
</tr>
</table>
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="4">
<tr>
<td class="catHead" colspan="5" align="center" height="28"><span class="cattitle">{L_MOD_CP}</span></td>
</tr>
<tr>
<td class="spaceRow" colspan="5" align="center"><span class="gensmall">{L_MOD_CP_EXPLAIN}</span></td>
</tr>
<tr>
<th class="thLeft" nowrap="nowrap" width="4%"> </th>
<th nowrap="nowrap">{L_TOPICS}</th>
<th nowrap="nowrap" width="8%">{L_REPLIES}</th>
<th nowrap="nowrap" width="17%">{L_LASTPOST}</th>
<th class="thRight" nowrap="nowrap" width="5%">{L_SELECT}</th>
</tr>
<!-- BEGIN topicrow -->
<tr>
<td class="row1" align="center" valign="middle">
<img title="{topicrow.L_TOPIC_FOLDER_ALT}" src="{topicrow.TOPIC_FOLDER_IMG}" alt="{topicrow.L_TOPIC_FOLDER_ALT}" />
</td>
<td class="row1"><span class="topictitle">{topicrow.TOPIC_TYPE}<a class="topictitle" href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></span><span class="gensmall" style="float:right;"></span></td>
<td class="row2" align="center" valign="middle"><span class="postdetails">{topicrow.REPLIES}</span></td>
<td class="row1" align="center" valign="middle"><span class="postdetails">{topicrow.LAST_POST_TIME}</span></td>
<td class="row2" align="center" valign="middle"><input type="checkbox" name="topic_id_list[]" value="{topicrow.TOPIC_ID}" /></td>
</tr>
<!-- END topicrow -->
<tr align="right">
<td class="catBottom" colspan="5" height="29">
{S_HIDDEN_FIELDS}
<input class="liteoption" type="submit" name="delete" value="{L_DELETE}" />
<input class="liteoption" type="submit" name="move" value="{L_MOVE}" />
<input class="liteoption" type="submit" name="lock" value="{L_LOCK}" />
<input class="liteoption" type="submit" name="unlock" value="{L_UNLOCK}" />
<!-- BEGIN switch_sticky --><input class="liteoption" type="submit" name="sticky" value="{L_STICKY}" /><!-- END switch_sticky -->
<!-- BEGIN switch_announce --><input class="liteoption" type="submit" name="announce" value="{L_ANNOUNCE}" /><!-- END switch_announce -->
<!-- BEGIN switch_normal --><input class="liteoption" type="submit" name="normal" value="{L_NORMAL}" /><!-- END switch_normal -->
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
<tr>
<td align="left" valign="top"><span class="nav">{PAGE_NUMBER}</span></td>
<td align="right" valign="top" nowrap="nowrap">
<span class="gensmall">
<b>
<a href="#" class="gensmall" onclick="this.value=check('select','manage');return false;">{L_SELECT_ALL}</a>
::
<a href="#" class="gensmall" onclick="this.value=check('unselect','manage');return false;">{L_USELECT_ALL}</a>
</b>
</span>
<br /><br />
<span class="nav">{PAGINATION}</span>
</td>
</tr>
</table>
</form>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right">{JUMPBOX}</td>
</tr>
</table>
Penser a enregistrer puis à valider en cliquant respectivement sur puis
L'aperçu imagé:
Ou ce contenu qui affichera le lien du sujet (qui s'ouvrira dans une nouvelle fenêtre) avec le nom du Pseudo:
- Code:
<form name="manage" action="{S_MODCP_ACTION}" method="post">
<script>
$(function(){
var moder=$('form[name="manage"]').length;
if(moder)
{
$('span[class="topictitle"]').each(function(){
var $this=$(this);
var a="/t";
var b=$(this).closest('tr').find('td').last().find('input[type="checkbox"]').val();
var c="-";
var d=$(this).text();
var D= d.replace(/ /gi, '-');
var all=a+b+c+D;
$.get(all , function(data){var h= $(data).find('span.name:first').text();
$this.next().append('<a href="'+all+'"target="_blank" class=" topictitle">Voir le message posté par '+h+'</a>');
});
});
}
});
</script>
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
<tr>
<td><span class="nav"><a class="nav" href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}</span></td>
</tr>
</table>
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="4">
<tr>
<td class="catHead" colspan="5" align="center" height="28"><span class="cattitle">{L_MOD_CP}</span></td>
</tr>
<tr>
<td class="spaceRow" colspan="5" align="center"><span class="gensmall">{L_MOD_CP_EXPLAIN}</span></td>
</tr>
<tr>
<th class="thLeft" nowrap="nowrap" width="4%"> </th>
<th nowrap="nowrap">{L_TOPICS}</th>
<th nowrap="nowrap" width="8%">{L_REPLIES}</th>
<th nowrap="nowrap" width="17%">{L_LASTPOST}</th>
<th class="thRight" nowrap="nowrap" width="5%">{L_SELECT}</th>
</tr>
<!-- BEGIN topicrow -->
<tr>
<td class="row1" align="center" valign="middle">
<img title="{topicrow.L_TOPIC_FOLDER_ALT}" src="{topicrow.TOPIC_FOLDER_IMG}" alt="{topicrow.L_TOPIC_FOLDER_ALT}" />
</td>
<td class="row1"><span class="topictitle">{topicrow.TOPIC_TYPE}<a class="topictitle" href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></span><span class="M14_member_moder" style="float:right;"></span></td>
<td class="row2" align="center" valign="middle"><span class="postdetails">{topicrow.REPLIES}</span></td>
<td class="row1" align="center" valign="middle"><span class="postdetails">{topicrow.LAST_POST_TIME}</span></td>
<td class="row2" align="center" valign="middle"><input type="checkbox" name="topic_id_list[]" value="{topicrow.TOPIC_ID}" /></td>
</tr>
<!-- END topicrow -->
<tr align="right">
<td class="catBottom" colspan="5" height="29">
{S_HIDDEN_FIELDS}
<input class="liteoption" type="submit" name="delete" value="{L_DELETE}" />
<input class="liteoption" type="submit" name="move" value="{L_MOVE}" />
<input class="liteoption" type="submit" name="lock" value="{L_LOCK}" />
<input class="liteoption" type="submit" name="unlock" value="{L_UNLOCK}" />
<!-- BEGIN switch_sticky --><input class="liteoption" type="submit" name="sticky" value="{L_STICKY}" /><!-- END switch_sticky -->
<!-- BEGIN switch_announce --><input class="liteoption" type="submit" name="announce" value="{L_ANNOUNCE}" /><!-- END switch_announce -->
<!-- BEGIN switch_normal --><input class="liteoption" type="submit" name="normal" value="{L_NORMAL}" /><!-- END switch_normal -->
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
<tr>
<td align="left" valign="top"><span class="nav">{PAGE_NUMBER}</span></td>
<td align="right" valign="top" nowrap="nowrap">
<span class="gensmall">
<b>
<a href="#" class="gensmall" onclick="this.value=check('select','manage');return false;">{L_SELECT_ALL}</a>
::
<a href="#" class="gensmall" onclick="this.value=check('unselect','manage');return false;">{L_USELECT_ALL}</a>
</b>
</span>
<br /><br />
<span class="nav">{PAGINATION}</span>
</td>
</tr>
</table>
</form>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right">{JUMPBOX}</td>
</tr>
</table>
L'aperçu imagé:
Et voilou cher ami.
Un mot ," tu 'es SUPER " moi j'ai toujours peur de faire une grosse boulette Phil, je ne voulais pas t'obliger car tu as déjà tellement de boulot donc moi je n'(aurais rien fait pas par feignasse mais manque de savoir.MERCI du fond du coeur reste comme tu es car d'une bonté incroyable encore merci je mets résolu alors ....Bonne soirée dédé
Sujets similaires
» [PHPBB2]Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [PHPBB3]Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [INVISION] Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [MODERNBB] Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [PHPBB2] Modération des sujets (fusion, division, cases à cocher, séparations)
» [PHPBB3]Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [INVISION] Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [MODERNBB] Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [PHPBB2] Modération des sujets (fusion, division, cases à cocher, séparations)
Créer un compte ou se connecter pour répondre
Vous devez être membre pour répondre.
Page 1 sur 1
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum