public function GatherContentOperationItem::save in GatherContent 7.3
Permanently saves the entity.
Overrides Entity::save
See also
File
- includes/
GatherContentOperationItem.inc, line 4
Class
Code
public function save() {
if (empty($this->created)) {
$this->created = REQUEST_TIME;
}
$this->changed = REQUEST_TIME;
return parent::save();
}