本文整理汇总了PHP中ElggEntity::countComments方法的典型用法代码示例。如果您正苦于以下问题:PHP ElggEntity::countComments方法的具体用法?PHP ElggEntity::countComments怎么用?PHP ElggEntity::countComments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ElggEntity
的用法示例。
在下文中一共展示了ElggEntity::countComments方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elgg_count_comments
/**
* Count the number of comments attached to an entity
*
* @param ElggEntity $entity
* @return int Number of comments
* @deprecated 1.8 Use ElggEntity->countComments()
*/
function elgg_count_comments($entity)
{
elgg_deprecated_notice('elgg_count_comments() is deprecated by ElggEntity->countComments()', 1.8);
if ($entity instanceof ElggEntity) {
return $entity->countComments();
}
return 0;
}