You are here

public function GatherContentOperationItem::save in GatherContent 7.3

Permanently saves the entity.

Overrides Entity::save

See also

entity_save()

File

includes/GatherContentOperationItem.inc, line 4

Class

GatherContentOperationItem

Code

public function save() {
  if (empty($this->created)) {
    $this->created = REQUEST_TIME;
  }
  $this->changed = REQUEST_TIME;
  return parent::save();
}