Article Comments

The ICommentableContentType interface enables comments to be created for your content type.

Why should I support comments?

When considering social features comments can be a great way to allow users to provide feedback. One example is if you were creating a shopping cart and wanted to allow comments on your products. In this sample comments can be added to links. This can be used as a way to allow users to add feedback on the content in the links.

Creating an ICommentableContentType plugin

To add support for commenting implement the ICommentableContentType interface that is defined in the Telligent.Evolution.Extensibility.Content.Version1 namespace of Telligent.Evolution.Core.dll.

It is important to note that one or more Core Services can be implemented in the same IContentType class.

This sample further extends the IContentType sample from the Application/Content document.

After implementing the IPlugin and IContentType interface, begin by defining if the user can comment with the CanCreateComment method. You can do something as simple as checking if the user is logged in or you can use the permissions API to check if the user has a certain type of permission. For this sample we make sure the user is logged in and registered.

Next you will want to check if the user has permission to delete a comment. This is similar to above but we added a check to see if the user accessing the comment is the author. Here we allow the user to delete their own comment.

Editing a comment can be similar to deleting a comment. You can verify the accessing user is the same as the comment author.

And unless you want to restrict viewing comments, the CanReadComment can simply return true.

Here is the full sample.