本文整理汇总了PHP中Review::addComment方法的典型用法代码示例。如果您正苦于以下问题:PHP Review::addComment方法的具体用法?PHP Review::addComment怎么用?PHP Review::addComment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Review
的用法示例。
在下文中一共展示了Review::addComment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: intval
if (isset($_GET['sid']) && intval($_GET['sid']) > 0) {
$sid = intval($_GET['sid']);
} else {
exit("Invalid submission!");
}
$submission = new Submission($sid);
foreach ($submission->getReview() as $key => $value) {
// Get the last id in the array
$id = $submission->getLatestReview($key);
if ($id > -1) {
// Get review
$review = new Review($id);
// If comment form was submitted add the comment
$commentSubmitId = 'comment' . $review->id;
if (key_exists($commentSubmitId, $_POST)) {
$review->addComment($_POST[$commentSubmitId]);
}
echo '<div class="review_box">';
echo '<p>';
// Link to review
if (get_class($review->data) == "TE") {
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>';
}