<?php
// File: $Id: dl-downloadeditorial.php,v 1.2 2001/12/08 12:17:01 jgm Exp $ $Name: $
// ----------------------------------------------------------------------
// POST-NUKE Content Management System
// Copyright (C) 2001 by the Post-Nuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// Based on:
// PHP-NUKE Web Portal System - http://phpnuke.org/
// Thatware - http://thatware.org/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Francisco Burzi
// Purpose of file:
// ----------------------------------------------------------------------
/**
* @usedby index
*/
function viewdownloadeditorial($lid, $ttitle) {
global $admin, $ModName, $pntable, $dbconn;
include("header.php");
include(WHERE_IS_PERSO."config.php");
menu(1);
$itemname = downloads_ItemNameFromIID($lid);
$catname = downloads_CatNameFromIID($lid);
if (!(authorised(0, 'Downloads::Item', "$itemname:$catname:$lid", ACCESS_EDIT))) {
echo _DOWNLOADSACCESSNOAUTH;
include 'footer.php';
return;
}
$column = &$pntable['downloads_editorials_column'];
$result=$dbconn->Execute("SELECT $column[adminid], $column[editorialtimestamp],
$column[editorialtext], $column[editorialtitle]
FROM $pntable[downloads_editorials]
WHERE $column[downloadid] = $lid");
// FTO Check EOF and databse error
if (!$result) {
PN_DBMsgError($dbconn, __FILE__, __LINE__, "An error ocurred");
die();
}
$transfertitle = ereg_replace ("_", " ", $ttitle);
$displaytitle = $transfertitle;
echo "<br>";
OpenTable();
echo "<center><font class=\"pn-title\">"._DOWNLOADPROFILE.": $displaytitle</font><br>";
downloadinfomenu($lid, $ttitle);
if (!$result->EOF) {
// FTO Check EOF and databse error
while(!$result->EOF) {
list($adminid, $editorialtimestamp, $editorialtext, $editorialtitle)=$result->fields;
$editorialtitle = stripslashes($editorialtitle); $editorialtext = stripslashes($editorialtext);
ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2}) ([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2})", $editorialtimestamp, $editorialtime);
$timestamp = mktime($editorialtime[4],$editorialtime[5],$editorialtime[6],$editorialtime[2],$editorialtime[3],$editorialtime[1]);
$formatted_date = date("F d, Y", $timestamp);
echo "<br><br>";
OpenTable2();
echo "<center><font class=\"pn-title\">$editorialtitle</font></center>"
."<center><font class=\"pn-normal\">"._EDITORIALBY." $adminid - $formatted_date</font></center><br><br>"
."$editorialtext";
CloseTable2();
$result->MoveNext();
}
} else {
echo "<br><br><center><font class=\"pn-title\">"._NOEDITORIAL."</font></center>";
}
echo "<br><br>";
downloadfooter($lid,$ttitle);
echo "</center>";
CloseTable();
include("footer.php");
}
?>