1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
<?php
/***************************************************************************
* waiting.php is a part of PhpWebGallery *
* ------------------- *
* last update : Monday, October 28, 2002 *
* email : pierrick@z0rglub.com *
* *
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; *
* *
***************************************************************************/
include_once( "./include/isadmin.inc.php" );
//-------------------------------------------------------------- mise � jour
if ( isset( $HTTP_POST_VARS['submit'] ) )
{
$query = "select id,cat_id,file,tn_ext";
$query.= " from PREFIX_TABLE"."waiting";
$query.= ";";
$result = mysql_query( $query );
while ( $row = mysql_fetch_array( $result ) )
{
$key = "validate-".$row['id'];
if ( isset( $HTTP_POST_VARS[$key] ) )
{
$query = "delete from PREFIX_TABLE"."waiting";
$query.= " where id = ".$row['id'];
$query.= ";";
mysql_query( $query );
if ( $HTTP_POST_VARS[$key] == "false" )
{
// we have to delete the picture and the thumbnail if it exists
$cat = get_cat_info( $row['cat_id'] );
unlink( ".".$cat['dir'].$row['file'] );
if ( $row['tn_ext'] != "" )
{
$file = substr ( $row['file'], 0, strrpos ( $row['file'], ".") );
unlink( ".".$cat['dir']."thumbnail/".$conf['prefixe_thumbnail'].$file.".".$row['tn_ext'] );
}
}
}
}
}
//--------------------------------------------------------------- formulaire
$cat_names = array();
echo "
<form action=\"".add_session_id_to_url( "./admin.php?page=waiting" )."\" method=\"post\">
<table style=\"width:100%;\">
<tr>
<th style=\"width:20%;\">".$lang['category']."</th>
<th style=\"width:20%;\">".$lang['date']."</th>
<th style=\"width:20%;\">".$lang['file']."</th>
<th style=\"width:20%;\">".$lang['thumbnail']."</th>
<th style=\"width:20%;\">".$lang['author']."</th>
<th style=\"width:1px;\"> </th>
</tr>";
$query = "select id,cat_id,file,username,mail_address,date,tn_ext";
$query.= " from PREFIX_TABLE"."waiting";
$query.= " order by cat_id";
$query.= ";";
$result = mysql_query( $query );
$i = 0;
while ( $row = mysql_fetch_array( $result ) )
{
$style = "";
if ( $i%2 == 0 )
{
$style = "class=\"row2\"";
}
if ( !isset( $cat_names[$row['cat_id']] ) )
{
$cat = get_cat_info( $row['cat_id'] );
$cat_names[$row['cat_id']] = array();
$cat_names[$row['cat_id']]['dir'] = ".".$cat['dir'];
$cat_names[$row['cat_id']]['display_name'] = get_cat_display_name( $cat['name'], " - ", "font-style:italic;" );
}
echo "
<tr>
<td $style style=\"white-space:nowrap;\">".$cat_names[$row['cat_id']]['display_name']."</td>
<td $style style=\"white-space:nowrap;\">".$lang['day'][date( "w", $row['date'] )].date( " j ", $row['date'] ).$lang['month'][date( "n", $row['date'] )].date( " Y G:i", $row['date'] )."</td>
<td $style style=\"white-space:nowrap;\">
<a target=\"_blank\" href=\"".$cat_names[$row['cat_id']]['dir'].$row['file']."\">".$row['file']."</td>
</td>
<td $style style=\"white-space:nowrap;\">";
if ( $row['tn_ext'] != "" )
{
$file = substr ( $row['file'], 0, strrpos ( $row['file'], ".") );
echo "<a target=\"_blank\" href=\"".$cat_names[$row['cat_id']]['dir']."thumbnail/".$conf['prefixe_thumbnail'].$file.".".$row['tn_ext']."\">".$conf['prefixe_thumbnail'].$file.".".$row['tn_ext'];
}
else
{
echo " ";
}
echo "
</td>
<td $style style=\"white-space:nowrap;\">
<a href=\"mailto:".$row['mail_address']."\">".$row['username']."</a>
</td>
<td $style style=\"white-space:nowrap;\">
<input type=\"radio\" name=\"validate-".$row['id']."\" value=\"true\" />".$lang['submit']."
<input type=\"radio\" name=\"validate-".$row['id']."\" value=\"false\" />".$lang['delete']."
</td>
</tr>";
$i++;
}
echo "
<tr>
<td colspan=\"5\" align=\"center\"><input type=\"submit\" name=\"submit\" value=\"".$lang['submit']."\" style=\"margin:5px;\" /></td>
</tr>";
echo "
</table>
</form>";
?>
|