- b2evolution CMS User Manual
- Developer Reference
- Website Skins/Themes
- Skin Tags / API
- Item Tags
- Tag Item Feedback Moderation
Tag Item Feedback Moderation
Displays feedback moderation link. Feedback includes comments, trackbacks & pingbacks.
The tag can display how many non moderated feedbacks there are for an item.
If there are not new feedback, which are not moderated by administrator, then it will display nothing.
== Example ==
$Item->feedback_moderation( $type = 'feedbacks', $before = '', $after = '', $zero = '', $one = '#', $more = '#', $edit_comments_link = '#' );
== Parameters ==
* Name: type
* Default: ‘feedbacks’
* Usage: Type of feedback to link to (feedbacks (all)/comments/trackbacks/pingbacks).
* Name: before
* Default: (no space)
* Usage: String to display before the link.
* Name: after
* Default: (no space)
* Usage: String to display after the link.
* Name: zero
* Default: (no space)
* Usage: Link text to display when there are 0 comments.
* Name: one
* Default: ‘#’
* Usage: Link text to display when there is 1 comment. If one is ‘#’ then it displays default text.
* Name: more
* Default: ‘#’
* Usage: Link text to display when there are > 1 comments (include %d for # of comments).
* Name: edit_comments_link
* Default: ‘#’
* Usage: Link to edit comments.
== Return value ==
This tag displays content only, it does not have a return value.