Show app names on 'Admin comments' page

This commit is contained in:
Alexander Nicolaysen Sørnes
2009-03-29 21:54:35 +02:00
committed by Alexander Nicolaysen Sørnes
parent 0001b42f66
commit fcfba5a714
2 changed files with 15 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ while ($oRow = query_fetch_object($commentIds))
$hResult = query_parameters($sQuery, $oRow->commentId); $hResult = query_parameters($sQuery, $oRow->commentId);
/* call view_app_comment to display the comment */ /* call view_app_comment to display the comment */
$oComment_row = query_fetch_object($hResult); $oComment_row = query_fetch_object($hResult);
Comment::view_app_comment($oComment_row); Comment::view_app_comment($oComment_row, true);
} }
/* display page selection links */ /* display page selection links */

View File

@@ -240,13 +240,13 @@ class Comment {
/** /**
* display a single comment (in $oRow) * display a single comment (in $oRow)
*/ */
function view_app_comment($oRow) function view_app_comment($oRow, $bShowAppName = false)
{ {
$oComment = new comment(null, $oRow); $oComment = new comment(null, $oRow);
$oComment->display(); $oComment->output_comment($bShowAppName);
} }
function display() private function output_comment($bShowAppName = false)
{ {
echo html_frame_start('','98%'); echo html_frame_start('','98%');
echo '<table width="100%" border="0" cellpadding="2" cellspacing="1">',"\n"; echo '<table width="100%" border="0" cellpadding="2" cellspacing="1">',"\n";
@@ -254,6 +254,10 @@ class Comment {
// message header // message header
echo "<tr bgcolor=\"#E0E0E0\"><td><a name=Comment-".$this->iCommentId."></a>\n"; echo "<tr bgcolor=\"#E0E0E0\"><td><a name=Comment-".$this->iCommentId."></a>\n";
echo " <b>".$this->sSubject."</b><br>\n"; echo " <b>".$this->sSubject."</b><br>\n";
if($bShowAppName)
echo 'Application: ' . version::fullNameLink($this->iVersionId) . "<br>\n";
echo " by ".forum_lookup_user($this->oOwner->iUserId)." on ".$this->sDateCreated."<br>\n"; echo " by ".forum_lookup_user($this->oOwner->iUserId)." on ".$this->sDateCreated."<br>\n";
echo "</td></tr><tr><td>\n"; echo "</td></tr><tr><td>\n";
@@ -264,8 +268,8 @@ class Comment {
$oM = new objectManager("comment", "Post new comment"); $oM = new objectManager("comment", "Post new comment");
$oM->setReturnTo($oVersion->objectMakeUrl()); $oM->setReturnTo($oVersion->objectMakeUrl());
// reply post buttons // reply post buttons
echo " [<a href=\"".$oM->makeUrl("add")."&iVersionId=$this->iVersionId\"><small>post new</small></a>] \n"; echo " [<a href=\"".$oM->makeUrl("add")."&iVersionId=$this->iVersionId\"><small>post new</small></a>] \n";
echo " [<a href=\"".$oM->makeUrl("add")."&iVersionId=$this->iVersionId". echo " [<a href=\"".$oM->makeUrl("add")."&iVersionId=$this->iVersionId".
"&iThread=$this->iCommentId\"><small>reply to this</small></a>] \n"; "&iThread=$this->iCommentId\"><small>reply to this</small></a>] \n";
echo "</td></tr>\n"; echo "</td></tr>\n";
@@ -290,6 +294,11 @@ class Comment {
echo html_frame_end(); echo html_frame_end();
} }
function display()
{
$this->output_comment();
}
/** /**
* grab single comment for commentId * grab single comment for commentId
*/ */