• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP bp_activity_current_comment函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中bp_activity_current_comment函数的典型用法代码示例。如果您正苦于以下问题:PHP bp_activity_current_comment函数的具体用法?PHP bp_activity_current_comment怎么用?PHP bp_activity_current_comment使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了bp_activity_current_comment函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: bp_activity_comment_delete_link

?>

		<?php 
if (bp_activity_user_can_delete()) {
    ?>

			<a href="<?php 
    bp_activity_comment_delete_link();
    ?>
" class="delete acomment-delete confirm bp-secondary-action" rel="nofollow"><?php 
    _e('Delete', 'buddypress');
    ?>
</a>

		<?php 
}
?>

		<?php 
do_action('bp_activity_comment_options');
?>

	</div>

	<?php 
bp_activity_recurse_comments(bp_activity_current_comment());
?>
</li>

<?php 
do_action('bp_after_activity_comment');
开发者ID:JeffreyBue,项目名称:jb,代码行数:31,代码来源:comment.php


示例2: bp_blogs_setup_comment_loop_globals_on_ajax

/**
 * Set up some globals used in the activity comment loop when AJAX is used.
 *
 * @since BuddyPress (2.0.0)
 *
 * @see bp_blogs_setup_activity_loop_globals()
 */
function bp_blogs_setup_comment_loop_globals_on_ajax() {
	// not AJAX? stop now!
	if ( ! defined( 'DOING_AJAX' ) ) {
		return;
	}
	if ( false === (bool) constant( 'DOING_AJAX' ) ) {
		return;
	}

	// get the parent activity item
	$comment         = bp_activity_current_comment();
	$parent_activity = new BP_Activity_Activity( $comment->item_id );

	// setup the globals
	bp_blogs_setup_activity_loop_globals( $parent_activity );
}
开发者ID:pombredanne,项目名称:ArcherSys,代码行数:23,代码来源:bp-blogs-activity.php


示例3: bp_activity_can_comment_reply

/**
 * Determine whether a comment can be made on an activity reply item.
 *
 * @since BuddyPress (1.5.0)
 *
 * @param object $comment Activity comment.
 * @return bool $can_comment True if comment can receive comments, otherwise
 *         false.
 */
function bp_activity_can_comment_reply($comment = '')
{
    // Assume activity can be commented on
    $can_comment = true;
    // Check that comment exists
    if (empty($comment)) {
        $comment = bp_activity_current_comment();
    }
    if (!empty($comment)) {
        // Fall back on current comment in activity loop
        $comment_depth = isset($comment->depth) ? intval($comment->depth) : bp_activity_get_comment_depth();
        // Threading is turned on, so check the depth
        if (get_option('thread_comments')) {
            $can_comment = (bool) ($comment_depth < get_option('thread_comments_depth'));
            // No threading for comment replies if no threading for comments
        } else {
            $can_comment = false;
        }
    }
    /**
     * Filters whether a comment can be made on an activity reply item.
     *
     * @since BuddyPress (1.5.0)
     *
     * @param bool   $can_comment Status on if activity reply can be commented on.
     * @param string $comment Current comment being checked on.
     */
    return (bool) apply_filters('bp_activity_can_comment_reply', $can_comment, $comment);
}
开发者ID:sdh100shaun,项目名称:pantheon,代码行数:38,代码来源:bp-activity-template.php


示例4: add_activity_comment_spam_button

 /**
  * Adds a "mark as spam" button to each activity COMMENT item for site admins.
  *
  * This function is intended to be used inside the activity stream loop.
  *
  * @since BuddyPress (1.6)
  */
 public function add_activity_comment_spam_button()
 {
     if (!bp_activity_user_can_mark_spam()) {
         return;
     }
     // By default, only handle activity updates and activity comments.
     $current_comment = bp_activity_current_comment();
     if (empty($current_comment) || !in_array($current_comment->type, BP_Akismet::get_activity_types())) {
         return;
     }
     bp_button(array('block_self' => false, 'component' => 'activity', 'id' => 'activity_make_spam_' . bp_get_activity_comment_id(), 'link_class' => 'bp-secondary-action spam-activity-comment confirm', 'link_href' => wp_nonce_url(bp_get_root_domain() . '/' . bp_get_activity_slug() . '/spam/' . bp_get_activity_comment_id() . '/?cid=' . bp_get_activity_comment_id(), 'bp_activity_akismet_spam_' . bp_get_activity_comment_id()), 'link_text' => __('Spam', 'buddypress'), 'wrapper' => false));
 }
开发者ID:pyropictures,项目名称:wordpress-plugins,代码行数:19,代码来源:bp-activity-akismet.php


示例5: bp_activity_can_comment_reply

/**
 * Determine whether a comment can be made on an activity reply item.
 *
 * @since BuddyPress (1.5.0)
 *
 * @param object $comment Activity comment.
 * @return bool $can_comment True if comment can receive comments, otherwise
 *         false.
 */
function bp_activity_can_comment_reply($comment = '')
{
    // Assume activity can be commented on
    $can_comment = true;
    // Check that comment exists
    if (empty($comment)) {
        $comment = bp_activity_current_comment();
    }
    if (!empty($comment)) {
        // Fall back on current comment in activity loop
        $comment_depth = isset($comment->depth) ? intval($comment->depth) : bp_activity_get_comment_depth();
        // Threading is turned on, so check the depth
        if (get_option('thread_comments')) {
            $can_comment = (bool) ($comment_depth < get_option('thread_comments_depth'));
            // No threading for comment replies if no threading for comments
        } else {
            $can_comment = false;
        }
    }
    return (bool) apply_filters('bp_activity_can_comment_reply', $can_comment, $comment);
}
开发者ID:eresyyl,项目名称:mk,代码行数:30,代码来源:bp-activity-template.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP bp_activity_delete函数代码示例发布时间:2022-05-24
下一篇:
PHP bp_activity_css_class函数代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap