Page MenuHomestyx hydra

PhabricatorMacroDisabledTransaction.php
No OneTemporary

PhabricatorMacroDisabledTransaction.php

<?php
final class PhabricatorMacroDisabledTransaction
extends PhabricatorMacroTransactionType {
const TRANSACTIONTYPE = 'macro:disabled';
public function generateOldValue($object) {
return $object->getIsDisabled();
}
public function applyInternalEffects($object, $value) {
$object->setIsDisabled($value);
}
public function getTitle() {
if ($this->getNewValue()) {
return pht(
'%s disabled this macro.',
$this->renderAuthor());
} else {
return pht(
'%s restored this macro.',
$this->renderAuthor());
}
}
public function getTitleForFeed() {
if ($this->getNewValue()) {
return pht(
'%s disabled %s.',
$this->renderAuthor(),
$this->renderObject());
} else {
return pht(
'%s restored %s.',
$this->renderAuthor(),
$this->renderObject());
}
}
public function getIcon() {
if ($this->getNewValue()) {
return 'fa-ban';
} else {
return 'fa-check';
}
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Feb 25, 1:18 AM (1 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
848389
Default Alt Text
PhabricatorMacroDisabledTransaction.php (1 KB)

Event Timeline