mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
40 lines
900 B
PHP
40 lines
900 B
PHP
|
<?php
|
||
|
|
||
|
final class DrydockBlueprintTransaction
|
||
|
extends PhabricatorApplicationTransaction {
|
||
|
|
||
|
const TYPE_NAME = 'drydock:blueprint:name';
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'drydock';
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionType() {
|
||
|
return DrydockPHIDTypeBlueprint::TYPECONST;
|
||
|
}
|
||
|
|
||
|
public function getTitle() {
|
||
|
$old = $this->getOldValue();
|
||
|
$new = $this->getNewValue();
|
||
|
$author_handle = $this->renderHandleLink($this->getAuthorPHID());
|
||
|
|
||
|
switch ($this->getTransactionType()) {
|
||
|
case self::TYPE_NAME:
|
||
|
if (!strlen($old)) {
|
||
|
return pht(
|
||
|
'%s created this blueprint.',
|
||
|
$author_handle);
|
||
|
} else {
|
||
|
return pht(
|
||
|
'%s renamed this blueprint from "%s" to "%s".',
|
||
|
$author_handle,
|
||
|
$old,
|
||
|
$new);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return parent::getTitle();
|
||
|
}
|
||
|
|
||
|
}
|