2014-07-25 02:59:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorAuditTransactionComment
|
|
|
|
extends PhabricatorApplicationTransactionComment {
|
|
|
|
|
|
|
|
protected $commitPHID;
|
|
|
|
protected $pathID;
|
|
|
|
protected $isNewFile = 0;
|
|
|
|
protected $lineNumber = 0;
|
|
|
|
protected $lineLength = 0;
|
|
|
|
protected $fixedState;
|
|
|
|
protected $hasReplies = 0;
|
|
|
|
protected $replyToCommentPHID;
|
|
|
|
protected $legacyCommentID;
|
|
|
|
|
|
|
|
public function getApplicationTransactionObject() {
|
|
|
|
return new PhabricatorAuditTransaction();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function shouldUseMarkupCache($field) {
|
|
|
|
// Only cache submitted comments.
|
|
|
|
return ($this->getTransactionPHID() != null);
|
|
|
|
}
|
|
|
|
|
2014-09-18 17:32:44 +02:00
|
|
|
public function getConfiguration() {
|
|
|
|
$config = parent::getConfiguration();
|
|
|
|
$config[self::CONFIG_COLUMN_SCHEMA] = array(
|
|
|
|
'commitPHID' => 'phid?',
|
|
|
|
'pathID' => 'id?',
|
|
|
|
'isNewFile' => 'bool',
|
|
|
|
'lineNumber' => 'uint32',
|
|
|
|
'lineLength' => 'uint32',
|
|
|
|
'fixedState' => 'text12?',
|
|
|
|
'hasReplies' => 'bool',
|
|
|
|
'replyToCommentPHID' => 'phid?',
|
|
|
|
'legacyCommentID' => 'id?',
|
|
|
|
) + $config[self::CONFIG_COLUMN_SCHEMA];
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
2014-07-25 02:59:43 +02:00
|
|
|
}
|