array( 'Text' => "Text" ), 'numeric' => array( "UserId" => "UserId" ), 'boolean' => array( "Completed" => "Completed", "Must" => "Must" ), 'timestamp' => array( "CreationDate" => "CreationDate", "CompletionDate" => "CompletionDate", "Deadline" => "Deadline" ), 'user' => array( "User" => "UserId" ) ); public function MarkDone() { $this->uCompletionDate = time(); $this->uCompleted = true; $this->InsertIntoDatabase(); } }