You are here

GatherContentOperationItem.inc in GatherContent 7.3

File

includes/GatherContentOperationItem.inc
View source
<?php

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

}

Classes