1. IMPORTANT : Nouvelles mesures de sécurité - 2. Règles pour obtenir de l'aide dans les forums de support - 3. Restrictions des droits pour le groupe "Support suspendu"

Il est obligatoire de respecter les Règles de MyBB.fr : Version abrégée ou Version complète pour obtenir du support sur nos forums.

Les membres ayant un site/forum contrevenant aux règles de MyBB.support seront placés dans le groupe "Support suspendu" et ne bénéficieront plus du support du staff. Nous recommandons aux autres membres d'agir de même. Il ne s'agit pas d'un bannissement, le membre retrouvera son statut "normal" dès que sa situation sera conforme aux règles.

Nouveau : un Wiki en français : plus de détails.
Avant de soumettre votre problème, consultez-le, ainsi que la FAQ, sans oublier le moteur de recherche interne.


Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5
Alerte notice pour les sujets, messages, piéces jointes, en attente de modération ?
Mots-clés » alerte, notice, sujets, messages, piéces, jointes, attente, modération
26-08-2016, 12:36, (Modification du message : 26-08-2016, 12:57 par exdiogene. Raison de la modification: Certains oublis dans le code... )
#5
RE: Alerte notice pour les sujets, messages, piéces jointes, en attente de modération
Je suggère d'utiliser le plugin exemple "/inc/plugins/hello.php" pour avoir une vue d'ensemble.

Normalement il faudrait renommer le plugin et toutes les fonctions internes, mais je vais donner la façon la plus simple... Wink

Pour commencer il faudra remplacer :
Code PHP :
$plugins->add_hook("pre_output_page""hello_world");
$plugins->add_hook("postbit""hello_world_postbit"); 

par :
Code PHP :
$plugins->add_hook("global_intermediate""hello_world"); 

supprimer :
Code PHP :
function hello_world_postbit(&$post)
{
$post['message'] = "<strong>Hello world!</strong><br /><br />{$post['message']}";


Remplacer :
Code PHP :
function hello_world($page)
{
$page str_replace("<div id=\"content\">""<div id=\"content\"><p>Hello World!<br />This is a sample MyBB Plugin (which can be disabled!) that displays this message on all pages.</p>"$page);
return 
$page;


par :

Code PHP :
function hello_world(){
 global 
$mybb$db$lang$awaiting_moderation;

$awaiting_moderation '';
// This user is a moderator, super moderator or administrator
if($mybb->usergroup['cancp'] == || $mybb->user['ismoderator'] && $mybb->usergroup['canmodcp']){

 
   // Unapproved threads
 
   $query $db->simple_select("threads""COUNT(tid) AS unapprovedthreads""visible=0 {$flist}");
 
   $unapproved_threads $db->fetch_field($query"unapprovedthreads");

 
   // 0 or more unapproved threads currently exist
 
   if($unapproved_threads 0)
 
   {
 
       if($unapproved_threads == 1)
 
       {
 
           $lang->awaiting_moderation $lang->awaiting_moderation_thread;
 
       }
 
       else
        
{
 
           $lang->awaiting_moderation $lang->sprintf($lang->awaiting_moderation_threads$unapproved_threads);
 
       }
 
       
        eval
('$awaiting_moderation_1 = "'.$templates->get('global_awaiting_moderation_threads').'";');
 
   }
 
   $awaiting_moderation .= $awaiting_moderation_1;
 
   
    
// Unapproved posts
 
   $query $db->query("
        SELECT COUNT(pid) AS unapprovedposts
        FROM  "
.TABLE_PREFIX."posts p
        LEFT JOIN "
.TABLE_PREFIX."threads t ON (t.tid=p.tid)
        WHERE p.visible='0' 
{$tflist} AND t.firstpost != p.pid
    "
);
 
   $unapproved_posts $db->fetch_field($query"unapprovedposts");

 
   // 0 or more unapproved posts currently exist
 
   if($unapproved_posts 0)
 
   {
 
       if($unapproved_posts == 1)
 
       {
 
           $lang->awaiting_moderation $lang->awaiting_moderation_post;
 
       }
 
       else
        
{
 
           $lang->awaiting_moderation $lang->sprintf($lang->awaiting_moderation_posts$unapproved_posts);
 
       }
 
       
        eval
('$awaiting_moderation_2 = "'.$templates->get('global_awaiting_moderation_posts').'";');
 
   }
 
   $awaiting_moderation .= $awaiting_moderation_2;
   
    
    
// Unapproved attachments
 
   $query $db->query("
        SELECT COUNT(aid) AS unapprovedattachments
        FROM  "
.TABLE_PREFIX."attachments a
        LEFT JOIN "
.TABLE_PREFIX."posts p ON (p.pid=a.pid)
        LEFT JOIN "
.TABLE_PREFIX."threads t ON (t.tid=p.tid)
        WHERE a.visible='0' 
{$tflist}
    "
);
 
   $unapproved_attachments $db->fetch_field($query"unapprovedattachments");

 
   // 0 or more unapproved attachments currently exist
 
   if($unapproved_attachments 0)
 
   {
 
       if($unapproved_attachments == 1)
 
       {
 
           $lang->awaiting_moderation $lang->awaiting_moderation_attachment;
 
       }
 
       else
        
{
 
           $lang->awaiting_moderation $lang->sprintf($lang->awaiting_moderation_attachments$unapproved_attachments);
 
       }
 
       
        eval
('$awaiting_moderation_3 = "'.$templates->get('global_awaiting_moderation_attachments').'";');
    
$awaiting_moderation .= $awaiting_moderation_3;
 
   }


Il ne reste qu'à installer le plugin... Smile

P.S. Je n'ai rien vérifier, mais cela devrait bien fonctionner...

Administrateur de MyBBCodes.com
Cool " Ce n'est pas ce que vous savez qui est important, c'est ce que vous faites ou ne faites pas!"
Obtenez plus de 175 plugins pour MyBB ici...
~~ AUCUNE AIDE Par MP, MAIL OU MSN !!!~~
Répondre


Messages dans ce sujet
RE: Alerte notice pour les sujets, messages, piéces jointes, en attente de modération - exdiogene - 26-08-2016, 12:36



Utilisateur(s) parcourant ce sujet : 1 visiteur(s)

Contact | MyBB.support | Retourner en haut | Retourner au contenu | Version bas-débit (Archivé) | Syndication RSS
 Utilitaire de traduction fourni par Regentronique