MyBB.de Forum
If Abfrage / XThreads PHP in Templates - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html)
+--- Thema: If Abfrage / XThreads PHP in Templates (/thread-26884.html)

Seiten: Seiten: 1 2 3 4


RE: If Abfrage / XThreads PHP in Templates - Jockl - 18.11.2012

Probier mal $mybb->usergroup['gid'] = 8


RE: If Abfrage / XThreads PHP in Templates - MrRight - 18.11.2012

Ne geht leidner net auch wenn man nicht in der Gruppe ist kommt nicht das else
PHP-Code:
<?php
if($mybb->user['postnum'] >= 50)
{
  if (
$daysreg >= 60){
      if (
$mybb->usergroup['gid'] = 8){
          echo 
"Sie sind..." ;
      } else{
          include 
'mein_account.php';
      }
  }
}
else
{
   echo 
" <strong> Info:</strong> ";
}
?>



RE: If Abfrage / XThreads PHP in Templates - Jockl - 18.11.2012

Code:
$mybb->usergroup['gid'] == 8



RE: If Abfrage / XThreads PHP in Templates - MrRight - 18.11.2012

Oh verdammt gleichgleich


RE: If Abfrage / XThreads PHP in Templates - MrRight - 19.11.2012

Noch mal ne frage ich habe jetzt $threadcount....
Wie mache ich das es nur die Themen von der Foren id x zählt :o


RE: If Abfrage / XThreads PHP in Templates - Jockl - 19.11.2012

Was hat eine Foren-ID im User-CP zu suchen?


RE: If Abfrage / XThreads PHP in Templates - MrRight - 19.11.2012

Funktioniert schon^^


RE: If Abfrage / XThreads PHP in Templates - MrRight - 19.11.2012

Wo wird in der DB gespeichert ob ein Thema schon geprüft wurde?
Also ob es noch
$unapproved_threads
ist?


RE: If Abfrage / XThreads PHP in Templates - Jockl - 19.11.2012

http://docs.mybb.com/Database_Tablesmybb_posts.html
http://docs.mybb.com/Database_Tablesmybb_threads.html

siehe jeweils Feld "visible"


RE: If Abfrage / XThreads PHP in Templates - MrRight - 19.11.2012

Danke!