1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-21 11:09:02 +01:00
phorge-phorge/src/applications/transactions/commentaction/PhabricatorEditEngineStaticCommentAction.php
epriestley 3c5a17ba8a Restore "Reclaim" and "Abandon" actions to Differential on EditEngine
Summary: Ref T11114. This begins restoring comment actions to Differential, but on top of EditEngine.

Test Plan: {F2263148}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11114

Differential Revision: https://secure.phabricator.com/D17107
2016-12-31 10:06:46 -08:00

28 lines
552 B
PHP

<?php
final class PhabricatorEditEngineStaticCommentAction
extends PhabricatorEditEngineCommentAction {
private $description;
public function setDescription($description) {
$this->description = $description;
return $this;
}
public function getDescription() {
return $this->description;
}
public function getPHUIXControlType() {
return 'static';
}
public function getPHUIXControlSpecification() {
return array(
'value' => $this->getValue(),
'description' => $this->getDescription(),
);
}
}