コード例 #1
0
ファイル: Activity.php プロジェクト: keeko/core
 /**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aActor) {
         $this->aActor->removeActivity($this);
     }
     if (null !== $this->aObject) {
         $this->aObject->removeActivityRelatedByObjectId($this);
     }
     if (null !== $this->aTarget) {
         $this->aTarget->removeActivityRelatedByTargetId($this);
     }
     $this->id = null;
     $this->actor_id = null;
     $this->verb = null;
     $this->object_id = null;
     $this->target_id = null;
     $this->created_at = null;
     $this->updated_at = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }