本文整理汇总了PHP中Review::printComments方法的典型用法代码示例。如果您正苦于以下问题:PHP Review::printComments方法的具体用法?PHP Review::printComments怎么用?PHP Review::printComments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Review
的用法示例。
在下文中一共展示了Review::printComments方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
echo '<a class="bold" href="?view=reviewthesis&sid=' . $submission->id . '&uid=' . $review->user . '">';
} elseif (get_class($review->data) == "PP") {
echo '<a class="bold" href="?view=reviewplan&sid=' . $submission->id . '&uid=' . $review->user . '">';
}
// Is it your review or someone elses?
if ($review->user == $GLOBALS['user']->id) {
echo '<h4 style="margin-bottom: 0em;">Your review</h4>';
} else {
echo '<h4 style="margin-bottom: 0em;">Read this review</h4>';
}
echo '</a><br/>';
// Date
echo 'Date: ' . $review->date->format("Y-m-d H:i:s") . '<br/>';
// Feedback
echo 'Feedback: ' . $review->data->feedback . '<br/>';
// Comments
echo '<div class="comments"><p>Comments:</p>';
$review->printComments();
echo '</div>';
// Print form for submitting Comments
print '
<form method="post" name="commentForm" action="?view=projectreviews&sid=' . $sid . '">
<textarea name="comment' . $review->id . '" id="comment"></textarea><br/>
<input type="submit" name="submitComment" value="Comment">
</form>
';
echo '</p>';
echo '</div>';
echo '<hr/>';
}
}