当前位置: 首页>>代码示例>>PHP>>正文


PHP Review::printComments方法代码示例

本文整理汇总了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/>';
    }
}
开发者ID:RosanderOliver,项目名称:DV1512_Projekt_HT2015,代码行数:31,代码来源:projectreviews.php


注:本文中的Review::printComments方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。