nzta/silverstripe-flagcomments

Allow users to flag comments

Installs: 972

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:silverstripe-vendormodule

2.0 2018-10-31 21:18 UTC

This package is auto-updated.

Last update: 2024-03-21 19:04:12 UTC


README

This module extends the comments module core functionality and adds the ability for a front-end user to flag a comment.

When a comment has been flagged, it cannot be flagged by anyone else.

Requirements

  • silverstripe/comments ^3.1
  • silverstripe/framework ^4.0

Note: This branch is compatible with SilverStripe 4. For a SilverStripe 3 release, please see the 1.x release line.

Installation

composer require nzta/silverstripe-flagcomments

Configuration

Assuming you've already added comments to your page as per instructions than all you need to do is enable flagging via config and add the flag to your template.

SilverStripe\CMS\Model\SiteTree:
  extensions:
    - 'NZTA\FlagComments\Extensions\FlagCommentsExtension'
  comments:
    can_flag: true

Adding the flag to your template:

The endpoint expects an ajax request and only responds with JSON. You'll have to handle this yourself, but to add the flag to your HTML you need to edit the CommentInterface_singlecomment.ss template. There's no reason why you can't add this to another template (this is just a helping hand).

<% if $canFlag %>
	<a href="$FlagLink">Flag</a>
<% end_if %>