home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / admin / modules / comments.php < prev    next >
PHP Script  |  2004-07-24  |  5KB  |  136 lines

  1. <?PHP
  2.  
  3. /************************************************************************/
  4. /* PHP-NUKE: Web Portal System                                          */
  5. /* ===========================                                          */
  6. /*                                                                      */
  7. /* Copyright (c) 2002 by Francisco Burzi                                */
  8. /* http://phpnuke.org                                                   */
  9. /*                                                                      */
  10. /* This program is free software. You can redistribute it and/or modify */
  11. /* it under the terms of the GNU General Public License as published by */
  12. /* the Free Software Foundation; either version 2 of the License.       */
  13. /*                                                                      */
  14. /************************************************************************/
  15. /*         Additional security & Abstraction layer conversion           */
  16. /*                           2003 chatserv                              */
  17. /*      http://www.nukefixes.com -- http://www.nukeresources.com        */
  18. /************************************************************************/
  19.  
  20. if (!eregi("admin.php", $_SERVER['PHP_SELF'])) { die ("Access Denied"); }
  21. global $prefix, $db;
  22. $aid = substr("$aid", 0,25);
  23. $row = $db->sql_fetchrow($db->sql_query("SELECT radminsuper FROM " . $prefix . "_authors WHERE aid='$aid'"));
  24. if ($row['radminsuper'] == 1) {
  25.  
  26. /*********************************************************/
  27. /* Comments Delete Function                              */
  28. /*********************************************************/
  29.  
  30. /* Thanks to Oleg [Dark Pastor] Martos from http://www.rolemancer.ru */
  31. /* to code the comments childs deletion function!                    */
  32.  
  33. function removeSubComments($tid) {
  34.     global $prefix, $db;
  35.     $tid = intval($tid);
  36.     $result = $db->sql_query("SELECT tid from " . $prefix . "_comments where pid='$tid'");
  37.     $numrows = $db->sql_numrows($result);
  38.     if($numrows>0) {
  39.     while ($row = $db->sql_fetchrow($result)) {
  40.     $stid = intval($row['tid']);
  41.             removeSubComments($stid);
  42.             $stid = intval($stid);
  43.             $db->sql_query("delete from " . $prefix . "_comments where tid='$stid'");
  44.         }
  45.     }
  46.     $db->sql_query("delete from " . $prefix . "_comments where tid='$tid'");
  47. }
  48.  
  49. function removeComment ($tid, $sid, $ok=0) {
  50.     global $ultramode, $prefix, $db;
  51.     if($ok) {
  52.         $tid = intval($tid);
  53.         $result = $db->sql_query("SELECT date from " . $prefix . "_comments where pid='$tid'");
  54.         $numresults = $db->sql_numrows($result);
  55.         $sid = intval($sid);
  56.         $db->sql_query("update " . $prefix . "_stories set comments=comments-1-'$numresults' where sid='$sid'");
  57.     /* Call recursive delete function to delete the comment and all its childs */
  58.         removeSubComments($tid);
  59.         if ($ultramode) {
  60.             ultramode();
  61.         }
  62.         Header("Location: modules.php?name=News&file=article&sid=$sid");
  63.     } else {
  64.     include("header.php");
  65.         GraphicAdmin();
  66.     OpenTable();
  67.     echo "<center><font class=\"title\"><b>" . _REMOVECOMMENTS . "</b></font></center>";
  68.     CloseTable();
  69.     echo "<br>";
  70.     OpenTable();
  71.         echo "<center>" . _SURETODELCOMMENTS . "";
  72.         echo "<br><br>[ <a href=\"javascript:history.go(-1)\">" . _NO . "</a> | <a href=\"admin.php?op=RemoveComment&tid=$tid&sid=$sid&ok=1\">" . _YES . "</a> ]</center>";
  73.     CloseTable();
  74.         include("footer.php");
  75.     }
  76. }
  77.  
  78. function removePollSubComments($tid) {
  79.     global $prefix, $db;
  80.     $tid = intval($tid);
  81.     $result = $db->sql_query("SELECT tid from " . $prefix . "_pollcomments where pid='$tid'");
  82.     $numrows = $db->sql_numrows($result);
  83.     if($numrows>0) {
  84.     while ($row = $db->sql_fetchrow($result)) {
  85.     $stid = intval($row['tid']);
  86.             removePollSubComments($stid);
  87.             $db->sql_query("delete from " . $prefix . "_pollcomments where tid='$stid'");
  88.         }
  89.     }
  90.     $db->sql_query("delete from " . $prefix . "_pollcomments where tid='$tid'");
  91. }
  92.  
  93. function RemovePollComment ($tid, $pollID, $ok=0) {
  94.     if($ok) {
  95.         removePollSubComments($tid);
  96.         Header("Location: modules.php?name=Surveys&op=results&pollID=$pollID");
  97.     } else {
  98.     include("header.php");
  99.         GraphicAdmin();
  100.     OpenTable();
  101.     echo "<center><font class=\"title\"><b>" . _REMOVECOMMENTS . "</b></font></center>";
  102.     CloseTable();
  103.     echo "<br>";
  104.     OpenTable();
  105.         echo "<center>" . _SURETODELCOMMENTS . "";
  106.         echo "<br><br>[ <a href=\"javascript:history.go(-1)\">" . _NO . "</a> | <a href=\"admin.php?op=RemovePollComment&tid=$tid&pollID=$pollID&ok=1\">" . _YES . "</a> ]</center>";
  107.     CloseTable();
  108.         include("footer.php");
  109.     }
  110. }
  111.  
  112. switch ($op) {
  113.  
  114.     case "RemoveComment":
  115.     removeComment ($tid, $sid, $ok);
  116.     break;
  117.  
  118.     case "removeSubComments":
  119.     removeSubComments($tid);
  120.     break;
  121.  
  122.     case "removePollSubComments":
  123.     removePollSubComments($tid);
  124.     break;
  125.  
  126.     case "RemovePollComment":
  127.     RemovePollComment($tid, $pollID, $ok);
  128.     break;
  129.  
  130. }
  131.  
  132. } else {
  133.     echo "Access Denied";
  134. }
  135. ?>
  136.