mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-21 11:09:02 +01:00
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
28 lines
552 B
PHP
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(),
|
|
);
|
|
}
|
|
|
|
}
|