diff --git a/admin/adminScreenshots.php b/admin/adminScreenshots.php
index f7d7ee8..31a0e0e 100644
--- a/admin/adminScreenshots.php
+++ b/admin/adminScreenshots.php
@@ -5,10 +5,10 @@
/************************************************************/
include("path.php");
-include(BASE."include/"."incl.php");
-require(BASE."include/"."screenshot.php");
-
-apidb_header("Screenshots");
+include(BASE."include/incl.php");
+require(BASE."include/screenshot.php");
+require(BASE."include/application.php");
+require(BASE."include/mail.php");
// deny access if not admin
if(!$_SESSION['current']->hasPriv("admin"))
@@ -16,12 +16,31 @@ if(!$_SESSION['current']->hasPriv("admin"))
errorpage("Insufficient privileges.");
exit;
}
+/*
+ * We issued a delete command.
+ */
+if($_REQUEST['cmd'])
+{
+ // process screenshot deletion
+ if($_REQUEST['cmd'] == "delete" && is_numeric($_REQUEST['imageId']))
+ {
+ $oScreenshot = new Screenshot($_REQUEST['imageId']);
+ $oScreenshot->delete();
+ $oScreenshot->free();
+ }
+ redirect($_SERVER['PHP_SELF'].
+ "?ItemsPerPage=".$_REQUEST['ItemsPerPage'].
+ "&page=".$_REQUEST['page']);
+ exit;
+
+}
+apidb_header("Screenshots");
// regenerate all screenshots
if($_REQUEST['regenerate'])
{
- $sQuery = "SELECT id FROM appData";
+ $sQuery = "SELECT id FROM appData WHERE type = 'image'";
$hResult = query_appdb($sQuery);
while($oRow = mysql_fetch_object($hResult))
{
@@ -32,108 +51,104 @@ if($_REQUEST['regenerate'])
set_time_limit(60);
}
}
+echo "
";
+echo "Regenerate all screenshots ! ".
+ "(use only if you know what you are doing)
";
+echo "";
-echo "Regenerate all screenshots ! (use only if you know what you are doing)
";
+/* display a range of 10 pages */
+$pageRange = 10;
-function display_range($currentPage, $pageRange, $totalPages, $screenshotsPerPage)
-{
- /* display the links to each of these pages */
- if($currentPage != 0)
- {
- $previousPage = $currentPage - 1;
- echo "Previous ";
- } else
- echo "Previous ";
-
- /* display the next 10 and previous 10 pages */
- $pageRange = 10;
-
- if($currentPage > $pageRange)
- $startPage = $currentPage - $pageRange;
- else
- $startPage = 0;
-
- if($currentPage + $pageRange < $totalPages)
- $endPage = $currentPage + $pageRange;
- else
- $endPage = $totalPages;
-
- /* display the desired range */
- for($x = $startPage; $x <= $endPage; $x++)
- {
- if($x != $currentPage)
- echo "$x ";
- else
- echo "$x ";
- }
-
- if($currentPage < $totalPages)
- {
- $nextPage = $currentPage + 1;
- echo "Next ";
- } else
- echo "Next ";
-}
-
-$screenshotsPerPage = 10;
-$currentPage = 0;
+$ItemsPerPage = 6;
+$currentPage = 1;
+if($_REQUEST['ItemsPerPage'])
+ $ItemsPerPage = $_REQUEST['ItemsPerPage'];
if($_REQUEST['page'])
$currentPage = $_REQUEST['page'];
-if($_REQUEST['screenshotsPerPage'])
- $screenshotsPerPage = $_REQUEST['screenshotsPerPage'];
+$ItemsPerPage = min($ItemsPerPage,100);
+$totalPages = max(ceil($BugLinks/$ItemsPerPage),1);
+$currentPage = min($currentPage,$totalPages);
+$offset = (($currentPage-1) * $ItemsPerPage);
-$totalPages = floor(getNumberOfComments()/$screenshotsPerPage);
-
-if($screenshotsPerPage > 100) $screenshotsPerPage = 100;
/* display page selection links */
echo "";
echo "Page $currentPage of $totalPages
";
-display_range($currentPage, $pageRange, $totalPages, $screenshotsPerPage);
+display_page_range($currentPage, $pageRange, $totalPages,
+ $_SERVER['PHP_SELF']."?ItemsPerPage=".$ItemsPerPage);
echo "
";
echo "
";
-/* display the option to choose how many comments per-page to disable */
-echo "";
-/* query for all of the commentId's, ordering by their time in reverse order */
-$offset = $currentPage * $screenshotsPerPage;
-$commentIds = query_appdb("SELECT id from appData ORDER BY ".
- "id ASC LIMIT $offset, $screenshotsPerPage;");
-while ($ob = mysql_fetch_object($commentIds))
+/* query for all of the Screenshots in assending order */
+$Ids = query_appdb("SELECT * from appData
+ WHERE type = 'image'
+ ORDER BY id ASC LIMIT $offset, $ItemsPerPage;");
+$c = 1;
+echo "\n";
+while ($oRow = mysql_fetch_object($Ids))
{
- $qstring = "SELECT id, appId, versionId, type, description ".
- "FROM appData WHERE id = $ob->id;";
- $result = query_appdb($qstring);
+ // display thumbnail
+ $oVersion = new version($oRow->versionId);
+ $oApp = new Application($oVersion->iAppId);
+ $img = get_thumbnail($oRow->id);
+ echo "| \n";
+ echo $img;
+ echo " | \n";
+ // end row if counter of 3
+ if ($c % 3 == 0) echo "
\n";
+ $c++;
- /* call view_app_comment to display the comment */
- $comment_ob = mysql_fetch_object($result);
- // TODO: display the thumbnail with link to screenshot
}
+echo "
\n";
/* display page selection links */
echo "";
-display_range($currentPage, $pageRange, $totalPages, $screenshotsPerPage);
+display_page_range($currentPage, $pageRange, $totalPages,
+ $_SERVER['PHP_SELF']."?ItemsPerPage=".$ItemsPerPage);
echo "";
apidb_footer();