Skip to end of banner
Go to start of banner

getAllCommentIds

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Description

Gets all the comment IDs that are already entered on a page.

Parameters

Return Type

Number []

IDs of the comments on the page.

Examples

Example 1

Print Page has 12 comments for example.

number [] allComm = getAllCommentIds(11801);
print("Page has " + size(allComm) + " comments";

Example 2

Deletes all comments older than 1 year from page ID 11801.

number [] allComm = getAllCommentIds(11801);
interval year = "365d";

for(number c in allComm) {
	CComment comm = getCommentById(c);
	if(comm.created < (currentDate - year)) {
		deleteComment(c)
	}
}

See also

  • No labels