[ Index ]

PHP Cross Reference of phpwcms V1.4.3 _r380 (23.11.09)

title

Body

[close]

/include/inc_lib/ -> files.private-delfilelist.inc.php (source)

   1  <?php
   2  /*************************************************************************************
   3     Copyright notice
   4     
   5     (c) 2002-2009 Oliver Georgi (oliver@phpwcms.de) // All rights reserved.
   6   
   7     This script is part of PHPWCMS. The PHPWCMS web content management system is
   8     free software; you can redistribute it and/or modify it under the terms of
   9     the GNU General Public License as published by the Free Software Foundation;
  10     either version 2 of the License, or (at your option) any later version.
  11    
  12     The GNU General Public License can be found at http://www.gnu.org/copyleft/gpl.html
  13     A copy is found in the textfile GPL.txt and important notices to the license 
  14     from the author is found in LICENSE.txt distributed with these scripts.
  15    
  16     This script is distributed in the hope that it will be useful, but WITHOUT ANY 
  17     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  18     PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  19   
  20     This copyright notice MUST APPEAR in all copies of the script!
  21  *************************************************************************************/
  22  
  23  // ----------------------------------------------------------------
  24  // obligate check for phpwcms constants
  25  if (!defined('PHPWCMS_ROOT')) {
  26     die("You Cannot Access This Script Directly, Have a Nice Day.");
  27  }
  28  // ----------------------------------------------------------------
  29  
  30  
  31  
  32  //Listing der gelöschten Dateien
  33  $file_sql = "SELECT * FROM ".DB_PREPEND."phpwcms_file WHERE f_uid=".$_SESSION["wcs_user_id"].
  34              " AND f_kid=1 AND f_trash=1 ORDER BY f_name";
  35  if($file_result = mysql_query($file_sql, $db) or die ("error while listing files")) {
  36      $file_durchlauf = 0;
  37      while($file_row = mysql_fetch_array($file_result)) {
  38          $filename = html_specialchars($file_row["f_name"]);
  39          if(!$file_durchlauf) { //Aufbau der Zeile zum Einfließen der Filelisten-Tavbelle
  40              echo "<tr bgcolor=\"#F5F8F9\"><td colspan=2><table width=\"538\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n"; 
  41          } else {
  42              echo "<tr bgcolor=\"#FFFFFF\"><td colspan=\"5\"><img src=\"img/leer.gif\" height=\"1\" width=\"1\"></td></tr>\n";
  43          }
  44          echo "<tr>\n";
  45          echo "<td width=\"6\" class=\"msglist\"><img src=\"img/leer.gif\" height=\"1\" width=\"6\" border=\"0\"></td>\n";
  46          echo "<td width=\"13\" class=\"msglist\">";
  47          echo "<img src=\"img/icons/small_".extimg($file_row["f_ext"])."\" border=\"0\"></td>\n";
  48          echo "<td width=\"419\" class=\"msglist\"><img src=\"img/leer.gif\" height=\"1\" width=\"5\">";
  49          echo "<a href=\"fileinfo.php?fid=".$file_row["f_id"];
  50          echo "\" target=\"_blank\" onclick=\"flevPopupLink(this.href,'filedetail','scrollbars=yes,resizable=yes,width=500,height=400',1);return document.MM_returnValue;\">";
  51          echo $filename."</a></td>\n";
  52          //Aufbauen Buttonleiste für jeweilige Datei
  53          echo "<td width=\"100\" align=\"right\" class=\"msglist\">";
  54          //Button zum Herausholen der Datei aus dem Papierkorb
  55          echo "<a href=\"include/inc_act/act_file.php?trash=".$file_row["f_id"]."|0".
  56                "\" title=\"".$BL['be_ftrash_undo'].": ".$filename."\" onclick=\"return confirm('".
  57               str_replace('{VAL}', $filename, $BL['be_ftrash_restore'])."');\">".
  58               "<img src=\"img/button/cancel_trash_13x13.gif\" border=\"0\"></a>";
  59          echo "<img src=\"img/leer.gif\" width=\"5\" height=\"1\">"; //Spacer
  60          //Button zum Löschen der Datei
  61          echo "<a href=\"include/inc_act/act_file.php?trash=".$file_row["f_id"]."|9".
  62                "\" title=\"".$BL['be_ftrash_delfinal'].": ".$filename."\" onclick=\"return confirm('".
  63               str_replace('{VAL}', $filename, $BL['be_ftrash_delete'])."');\">".
  64               "<img src=\"img/button/trash_13x13_1.gif\" border=\"0\"></a>";
  65          echo "<img src=\"img/leer.gif\" width=\"2\" height=\"1\">"; //Spacer
  66          echo "</td>\n";
  67          //Ende Aufbau
  68          echo "</tr>\n";
  69          $file_durchlauf++;
  70      }
  71      if($file_durchlauf) { //Abschluss der Filelisten-Tabelle
  72          echo "</table>\n";
  73          echo "<tr bgcolor=\"#F5F8F9\"><td colspan=\"2\"><img src=\"img/leer.gif\" height=\"1\" width=\"1\"></td></tr>\n"; //Abstand vor
  74      }
  75  } //Ende Liste Dateien
  76  ?>


Generated: Wed Dec 30 05:55:15 2009 Cross-referenced by PHPXref 0.7