mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 11:52:40 +01:00
9a515171f4
Summary: Yup, it's sitevars. No conduit or caching or fancy stuff yet. Ref T2793. Test Plan: {F36525} {F36526} {F36527} {F36528} {F36529} Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2793 Differential Revision: https://secure.phabricator.com/D5397
62 lines
1.5 KiB
PHP
62 lines
1.5 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 PhabricatorPHIDConstants::PHID_TYPE_PVAR;
|
|
}
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
return null;
|
|
}
|
|
|
|
public function getApplicationObjectTypeName() {
|
|
return pht('variable');
|
|
}
|
|
|
|
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) {
|
|
$old = $this->getOldValue();
|
|
$new = $this->getNewValue();
|
|
|
|
$view = id(new PhabricatorApplicationTransactionTextDiffDetailView())
|
|
->setUser($viewer)
|
|
->setOldText(json_encode($old))
|
|
->setNewText(json_encode($new));
|
|
|
|
return $view->render();
|
|
}
|
|
|
|
|
|
}
|