Home » Documentation » What is PeoplePods? » SDK Documentation » Object Definitions » PeoplePods Objects » $POD->getComment()

$POD->getComment()

Returns one specific Comment Object. This function can be used to load an existing comment from the database, or create a new comment.

Loading a Comment

To load an existing piece comment, pass in the comment's database id

$id = 5;
$comment = $POD->getComment(array(
  'id'=>$id
));

Creating a Comment

To create comment, you can either load an empty content object and set values for its fields, or pass in default values to the constructor.

HOWEVER, the much more useful way of doing this is to use the $content->addComment() function, which handles almost everything automagically.

Create a brand new, empty comment object:

$new_comment = $POD->getComment();
$new_comment->set('comment','This comment sucks!');
$new_content->set('userId',$POD->currentUser()->get('id'));
$new_comment->set('contentId',$content->get('id'));
$new_comment->save();

Or, pass in values:

$new_comment = $POD->getComment(array(
  'comment' => 'This is the default headline',
  'userId'=>$POD->currentUser()->get('id'),
  'contentId'=>$content->get('id')
));
$new_comment->save();

Errors

Be sure to check for errors! In some instances, the comment object may not be created properly, and will throw an error.

if (!$new_comment->success()) {
  echo $new_comment->error();
}
  • Discuss This Document

No comments have been posted yet.

Download Download the latest version of PeoplePods!

0.71 Latest Version:
Release Notes

A free membership is required to download PeoplePods.

  Already Registered? Login

Recent Posts from Our Blog

0.71 Released - Inbox bug fixed

PeoplePods version 0.71 has been released. This version is a maintenance release which fixes a problem with the private messaging inbox. Existing PeoplePods sites can upgrade to the newest...

PeoplePods powers MediaBugs.org and the Helsinki Design Lab

April saw the launch of two brand new PeoplePods-powered applications. These new sites use the latest version of PeoplePods - 0.8 - which will be available to download at the end of...

Version 0.7 Now Available

Last night, I uploaded a new release of PeoplePods: version 0.7. The most exciting new features in this version are: new dynamic image resizing options, a faster comment polling system, new ways...

Developer Preview Launch!

I am very excited to announce the launch of PeoplePods version 0.666, THE DEVELOPER PREVIEW! After tons of hacking, I have tweaked the last line of code, and I am finally ready for a wider audience...