當前位置: 首頁>>代碼示例>>PHP>>正文


PHP unknown::get_comment方法代碼示例

本文整理匯總了PHP中unknown::get_comment方法的典型用法代碼示例。如果您正苦於以下問題:PHP unknown::get_comment方法的具體用法?PHP unknown::get_comment怎麽用?PHP unknown::get_comment使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在unknown的用法示例。


在下文中一共展示了unknown::get_comment方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: smarty_function_getcomments

/**
 *
 *
 * @param unknown $params
 * @param unknown $bBlog  (reference)
 */
function smarty_function_getcomments($params, &$bBlog)
{
    $assign = "comments";
    $postid = $bBlog->show_post;
    $replyto = $_REQUEST['replyto'];
    extract($params);
    // first, assign the hidden fields
    $commentformhiddenfields = '<input type="hidden" name="do" value="submitcomment" />';
    $commentformhiddenfields .= '<input type="hidden" name="comment_postid" value="' . $postid . '" />';
    if (is_numeric($replyto)) {
        $commentformhiddenfields .= '<a name="commentform"></a><input type="hidden" name="replytos" value="' . $replyto . '" />';
    }
    $bBlog->assign("commentformhiddenfields", $commentformhiddenfields);
    $bBlog->assign("commentformaction", $bBlog->_get_entry_permalink($postid));
    // are we posting a comment ?
    if ($_POST['do'] == 'submitcomment' && is_numeric($_POST['comment_postid'])) {
        // we are indeed!
        if (is_numeric($_POST['replytos'])) {
            $rt = $_POST['replytos'];
        } else {
            $rt = false;
        }
        $bBlog->new_comment($_POST['comment_postid'], $rt);
    }
    // get the comments.
    /* start loop and get posts*/
    $rt = false;
    if (is_numeric($_GET['replyto'])) {
        $rt = $_GET['replyto'];
        $cs = $bBlog->get_comment($postid, $rt);
    } else {
        $cs = $bBlog->get_comments($postid, FALSE);
    }
    /* assign loop variable */
    $bBlog->assign($assign, $cs);
}
開發者ID:escherlat,項目名稱:loquacity,代碼行數:42,代碼來源:function.getcomments.php

示例2: editComment

/**
 *
 *
 * @param unknown $bBlog     (reference)
 * @param unknown $commentid
 * @param unknown $postid
 * @return unknown
 */
function editComment(&$bBlog, $commentid, $postid)
{
    $rval = true;
    if (!(is_numeric($commentid) && is_numeric($postid))) {
        $rval = false;
    }
    $comment = $bBlog->get_comment($postid, $commentid);
    if (!$comment) {
        $rval = false;
    }
    if ($rval === true) {
        $bBlog->assign('showeditform', TRUE);
        $bBlog->assign('comment', $comment[0]);
    }
    return $rval;
}
開發者ID:escherlat,項目名稱:loquacity,代碼行數:24,代碼來源:admin.comments.php


注:本文中的unknown::get_comment方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。