Home » Documentation » What is PeoplePods? » SDK Documentation » Object Definitions » Content Object » $Content->save()

$Content->save()

Saves the content object to the database.

Before saving a new content record, make sure that the headline field and the type field are set. If these fields are not set, the save will fail.

$content = $POD->getContent();
$content->set('headline','This is the title');
$content->set('type','post');
$content->save();

If no userId is specified, the userId field will be set to $POD->currentUser().

By default, the headline, link and type fields are stripped of any HTML tags. The body field, however, is left unmolested. If you would like to filter the body tag of any potentially malicious tags, pass in true as a parameter. This will cause the body field to be stripped of all tags NOT INCLUDING basic formatting tags like p, br, a, i, u, b, strike and img.

$content = $POD->getContent();
$content->set('headline','My body has bad code in it!');
$content->set('type','example');
$content->set('body','');
$content->save(true);

Once a piece of content has been saved, the id, stub and permalink fields will be available, as well as all of the normal relationship functions (children, parent, etc.) Meta and Flag functions are also available after saving.

There are two alternative functions that also save content to the database. These are $Content->changeStatus() and $Content->setGroup(). These functions bypass the isEditable().

  • 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...