2014-02-03 19:52:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorDashboardTransaction
|
|
|
|
extends PhabricatorApplicationTransaction {
|
|
|
|
|
|
|
|
const TYPE_NAME = 'dashboard:name';
|
2014-05-16 04:12:40 +02:00
|
|
|
const TYPE_LAYOUT_MODE = 'dashboard:layoutmode';
|
2014-02-03 19:52:15 +01:00
|
|
|
|
|
|
|
public function getApplicationName() {
|
|
|
|
return 'dashboard';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionType() {
|
2014-07-24 00:05:46 +02:00
|
|
|
return PhabricatorDashboardDashboardPHIDType::TYPECONST;
|
2014-02-03 19:52:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getTitle() {
|
|
|
|
$author_phid = $this->getAuthorPHID();
|
|
|
|
$object_phid = $this->getObjectPHID();
|
|
|
|
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
$author_link = $this->renderHandleLink($author_phid);
|
|
|
|
|
|
|
|
$type = $this->getTransactionType();
|
|
|
|
switch ($type) {
|
|
|
|
case self::TYPE_NAME:
|
|
|
|
if (!strlen($old)) {
|
|
|
|
return pht(
|
|
|
|
'%s created this dashboard.',
|
|
|
|
$author_link);
|
|
|
|
} else {
|
|
|
|
return pht(
|
|
|
|
'%s renamed this dashboard from "%s" to "%s".',
|
|
|
|
$author_link,
|
|
|
|
$old,
|
|
|
|
$new);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getTitle();
|
|
|
|
}
|
|
|
|
|
2015-01-02 17:45:43 +01:00
|
|
|
public function getTitleForFeed() {
|
2014-02-03 19:52:15 +01:00
|
|
|
$author_phid = $this->getAuthorPHID();
|
|
|
|
$object_phid = $this->getObjectPHID();
|
|
|
|
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
$author_link = $this->renderHandleLink($author_phid);
|
|
|
|
$object_link = $this->renderHandleLink($object_phid);
|
|
|
|
|
|
|
|
$type = $this->getTransactionType();
|
|
|
|
switch ($type) {
|
|
|
|
case self::TYPE_NAME:
|
|
|
|
if (!strlen($old)) {
|
|
|
|
return pht(
|
|
|
|
'%s created dashboard %s.',
|
|
|
|
$author_link,
|
|
|
|
$object_link);
|
|
|
|
} else {
|
|
|
|
return pht(
|
|
|
|
'%s renamed dashboard %s from "%s" to "%s".',
|
|
|
|
$author_link,
|
|
|
|
$object_link,
|
|
|
|
$old,
|
|
|
|
$new);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-02 17:45:43 +01:00
|
|
|
return parent::getTitleForFeed();
|
2014-02-03 19:52:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getColor() {
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_NAME:
|
|
|
|
if (!strlen($old)) {
|
|
|
|
return PhabricatorTransactions::COLOR_GREEN;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getColor();
|
|
|
|
}
|
2014-05-16 04:12:40 +02:00
|
|
|
|
|
|
|
public function shouldHide() {
|
|
|
|
$old = $this->getOldValue();
|
|
|
|
$new = $this->getNewValue();
|
|
|
|
|
|
|
|
switch ($this->getTransactionType()) {
|
|
|
|
case self::TYPE_LAYOUT_MODE:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return parent::shouldHide();
|
|
|
|
}
|
2014-02-03 19:52:15 +01:00
|
|
|
}
|