mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-18 01:38:39 +01:00
Summary: We can get this out of PHIDType reasonably in all cases and simplify implementation here. None of these translate correctly anyway so they're basically debugging/development strings. Test Plan: `grep`, browsed some transactions Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D6786
44 lines
1,011 B
PHP
44 lines
1,011 B
PHP
<?php
|
|
|
|
final class PonderAnswerTransaction
|
|
extends PhabricatorApplicationTransaction {
|
|
|
|
const TYPE_CONTENT = 'ponder.answer:content';
|
|
|
|
public function getApplicationName() {
|
|
return 'ponder';
|
|
}
|
|
|
|
public function getTableName() {
|
|
return 'ponder_answertransaction';
|
|
}
|
|
|
|
public function getApplicationTransactionType() {
|
|
return PonderPHIDTypeAnswer::TYPECONST;
|
|
}
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
return new PonderAnswerTransactionComment();
|
|
}
|
|
|
|
public function getTitleForFeed() {
|
|
$author_phid = $this->getAuthorPHID();
|
|
$object_phid = $this->getObjectPHID();
|
|
|
|
$old = $this->getOldValue();
|
|
$new = $this->getNewValue();
|
|
|
|
switch ($this->getTransactionType()) {
|
|
case self::TYPE_CONTENT:
|
|
// TODO: This is not so good.
|
|
return pht(
|
|
'%s edited their answer to %s',
|
|
$this->renderHandleLink($author_phid),
|
|
$this->renderHandleLink($object_phid));
|
|
}
|
|
|
|
return $this->getTitle();
|
|
}
|
|
|
|
}
|
|
|