mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-12 16:46:15 +01:00
65 lines
1.4 KiB
PHP
65 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
final class PassphraseCredentialDescriptionTransaction
|
||
|
extends PassphraseCredentialTransactionType {
|
||
|
|
||
|
const TRANSACTIONTYPE = 'passphrase:description';
|
||
|
|
||
|
public function generateOldValue($object) {
|
||
|
return $object->getDescription();
|
||
|
}
|
||
|
|
||
|
public function applyInternalEffects($object, $value) {
|
||
|
$object->setDescription($value);
|
||
|
}
|
||
|
|
||
|
public function shouldHide() {
|
||
|
$old = $this->getOldValue();
|
||
|
if (!strlen($old)) {
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function getTitle() {
|
||
|
return pht(
|
||
|
'%s updated the description for this credential.',
|
||
|
$this->renderAuthor());
|
||
|
}
|
||
|
|
||
|
public function getTitleForFeed() {
|
||
|
return pht(
|
||
|
'%s updated the description for credential %s.',
|
||
|
$this->renderAuthor(),
|
||
|
$this->renderObject());
|
||
|
}
|
||
|
|
||
|
public function hasChangeDetailView() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function getMailDiffSectionHeader() {
|
||
|
return pht('CHANGES TO CREDENTIAL DESCRIPTION');
|
||
|
}
|
||
|
|
||
|
public function newChangeDetailView() {
|
||
|
$viewer = $this->getViewer();
|
||
|
|
||
|
return id(new PhabricatorApplicationTransactionTextDiffDetailView())
|
||
|
->setViewer($viewer)
|
||
|
->setOldText($this->getOldValue())
|
||
|
->setNewText($this->getNewValue());
|
||
|
}
|
||
|
|
||
|
public function newRemarkupChanges() {
|
||
|
$changes = array();
|
||
|
|
||
|
$changes[] = $this->newRemarkupChange()
|
||
|
->setOldValue($this->getOldValue())
|
||
|
->setNewValue($this->getNewValue());
|
||
|
|
||
|
return $changes;
|
||
|
}
|
||
|
|
||
|
}
|