mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
97a8700e45
Summary: Ref T5655. Rename `PhabricatorPHIDType` subclasses for clarity (see discussion in D9839). I'm not too keen on some of the resulting class names, so feel free to suggest alternatives. Test Plan: Ran unit tests. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin, hach-que Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D9986
53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
|
|
final class PhluxTransaction extends PhabricatorApplicationTransaction {
|
|
|
|
const TYPE_EDIT_KEY = 'phlux:key';
|
|
const TYPE_EDIT_VALUE = 'phlux:value';
|
|
|
|
public function getApplicationName() {
|
|
return 'phlux';
|
|
}
|
|
|
|
public function getApplicationTransactionType() {
|
|
return PhluxVariablePHIDType::TYPECONST;
|
|
}
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
return null;
|
|
}
|
|
|
|
public function getTitle() {
|
|
$author_phid = $this->getAuthorPHID();
|
|
|
|
switch ($this->getTransactionType()) {
|
|
case self::TYPE_EDIT_KEY:
|
|
return pht(
|
|
'%s created this variable.',
|
|
$this->renderHandleLink($author_phid));
|
|
case self::TYPE_EDIT_VALUE:
|
|
return pht(
|
|
'%s updated this variable.',
|
|
$this->renderHandleLink($author_phid));
|
|
}
|
|
|
|
return parent::getTitle();
|
|
}
|
|
|
|
public function hasChangeDetails() {
|
|
switch ($this->getTransactionType()) {
|
|
case self::TYPE_EDIT_VALUE:
|
|
return true;
|
|
}
|
|
return parent::hasChangeDetails();
|
|
}
|
|
|
|
public function renderChangeDetails(PhabricatorUser $viewer) {
|
|
return $this->renderTextCorpusChangeDetails(
|
|
$viewer,
|
|
json_encode($this->getOldValue()),
|
|
json_encode($this->getNewValue()));
|
|
}
|
|
|
|
|
|
}
|