Home
last modified time | relevance | path

Searched refs:count_comments (Results 1 – 14 of 14) sorted by relevance

/dports/devel/creduce/creduce-2.10.0/creduce/
H A Dpass_comments.pm24 sub count_comments ($$) { subroutine
62 my $instances = count_comments($cfile, $which);
83 my $new_instances = count_comments($tmpfile, $which);
116 $sh{"chunk"} = count_comments($cfile, $which);
/dports/ftp/wzdftpd/wzdftpd-0.8.3/modules/sfv/
H A Dlibwzd_sfv_sfv.c224 int count_comments=0, count_entries=0; in sfv_read() local
249 if ((count_comments + 2 )% 50 == 0) in sfv_read()
250 sfv->comments = realloc(sfv->comments,(count_comments+50)*sizeof(char*)); in sfv_read()
251 sfv->comments[count_comments] = malloc(length+1); in sfv_read()
252 strcpy(sfv->comments[count_comments],buf); in sfv_read()
253 count_comments++; in sfv_read()
276 sfv->comments[count_comments] = NULL; in sfv_read()
H A Dlibwzd_sfv_site.c102 int count_comments=0, count_entries=0; in sfv_create() local
171 sfv.comments[count_comments] = NULL; in sfv_create()
/dports/www/tikiwiki/tiki-21.2/lib/core/Search/GlobalSource/
H A DCommentSource.php41 $comment_count = $this->commentslib->count_comments("$objectType:$objectId");
/dports/www/tikiwiki/tiki-21.2/lib/smarty_tiki/
H A Dfunction.poll.php47 $comments_count = TikiLib::lib('comments')->count_comments("poll:" . $menu_info["pollId"]);
/dports/www/tikiwiki/tiki-21.2/
H A Dcomments.php386 …$comments_cant = $commentslib->count_comments('topic:' . $_REQUEST['comments_parentId']); // comme…
388 $comments_cant = $commentslib->count_comments($comments_objectId);
H A Dtiki-view_articles.php135 …$listpages["data"][$i]["comments_cant"] = TikiLib::lib('comments')->count_comments($comments_objec…
/dports/www/tikiwiki/tiki-21.2/lib/wiki/
H A Drenderlib.php646 $count_comments = TikiLib::lib('comments')->count_comments('wiki page:' . $this->page, 'n');
647 $this->smartyassign('count_comments', $count_comments);
/dports/www/tikiwiki/tiki-21.2/templates/
H A Dtiki-page_bar.tpl131 {if $count_comments}
132 &nbsp;<span class="count_comments badge badge-secondary">{$count_comments}</span>
/dports/www/e107/e107/e107_handlers/
H A Dcomment_class.php986 function count_comments($table, $id) function in comment
992 …$count_comments = $sql->count("comments", "(*)", "WHERE comment_item_id='".intval($id)."' AND comm…
993 return $count_comments;
/dports/www/tikiwiki/tiki-21.2/lib/wiki-plugins/
H A Dwikiplugin_articles.php447 …$listpages["data"][$i]["comments_cant"] = TikiLib::lib('comments')->count_comments($comments_objec…
/dports/www/tikiwiki/tiki-21.2/lib/core/Services/Forum/
H A DController.php291 if ($this->lib->count_comments('forum:' . $util->extra['forumId']) > 0) {
/dports/www/tikiwiki/tiki-21.2/lib/blogs/
H A Dbloglib.php672 $res["comments"] = TikiLib::lib('comments')->count_comments('blog post:' . $res['postId']);
/dports/www/tikiwiki/tiki-21.2/lib/comments/
H A Dcommentslib.php1448 $res['comments'] = (int) $this->count_comments('forum:' . $res['forumId']);
1958 function count_comments($objectId, $approved = 'y') function in Comments