Page MenuHomec4science

PhabricatorCommentEditField.php
No OneTemporary

File Metadata

Created
Fri, Sep 20, 15:02

PhabricatorCommentEditField.php

<?php
final class PhabricatorCommentEditField
extends PhabricatorEditField {
private $isWebOnly;
public function setIsWebOnly($is_web_only) {
$this->isWebOnly = $is_web_only;
return $this;
}
public function getIsWebOnly() {
return $this->isWebOnly;
}
protected function newControl() {
return new PhabricatorRemarkupControl();
}
protected function newEditType() {
return new PhabricatorCommentEditType();
}
protected function newConduitParameterType() {
if ($this->getIsWebOnly()) {
return null;
} else {
return new ConduitStringParameterType();
}
}
public function shouldGenerateTransactionsFromSubmit() {
return !$this->isPrimaryCommentField();
}
public function shouldGenerateTransactionsFromComment() {
return $this->isPrimaryCommentField();
}
private function isPrimaryCommentField() {
return ($this->getKey() === 'comment');
}
}

Event Timeline