Page MenuHomePhorge

PhabricatorSlowvoteQuestionTransaction.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

PhabricatorSlowvoteQuestionTransaction.php

<?php
final class PhabricatorSlowvoteQuestionTransaction
extends PhabricatorSlowvoteTransactionType {
const TRANSACTIONTYPE = 'vote:question';
public function generateOldValue($object) {
return $object->getQuestion();
}
public function applyInternalEffects($object, $value) {
$object->setQuestion($value);
}
public function getTitle() {
$old = $this->getOldValue();
$new = $this->getNewValue();
if ($old === null) {
return pht(
'%s created this poll.',
$this->renderAuthor());
} else {
return pht(
'%s changed the poll question from "%s" to "%s".',
$this->renderAuthor(),
$old,
$new);
}
}
public function getTitleForFeed() {
$old = $this->getOldValue();
if ($old === null) {
return pht(
'%s created %s.',
$this->renderAuthor(),
$this->renderObject());
} else {
return pht(
'%s renamed %s.',
$this->renderAuthor(),
$this->renderObject());
}
}
public function getIcon() {
$old = $this->getOldValue();
if ($old === null) {
return 'fa-plus';
} else {
return 'fa-pencil';
}
}
public function validateTransactions($object, array $xactions) {
$errors = array();
if ($this->isEmptyTextTransaction($object->getQuestion(), $xactions)) {
$errors[] = $this->newRequiredError(pht('Polls must have a question.'));
}
return $errors;
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Jun 30, 10:03 PM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
275922
Default Alt Text
PhabricatorSlowvoteQuestionTransaction.php (1 KB)

Event Timeline