Page MenuHomec4science

PhabricatorCommentEditField.php
No OneTemporary

File Metadata

Created
Mon, Jul 8, 04:20

PhabricatorCommentEditField.php

<?php
final class PhabricatorCommentEditField
extends PhabricatorEditField {
protected function newControl() {
return new PhabricatorRemarkupControl();
}
protected function newEditType() {
return new PhabricatorCommentEditType();
}
protected function newConduitParameterType() {
return new ConduitStringParameterType();
}
public function shouldGenerateTransactionsFromSubmit() {
return false;
}
public function shouldGenerateTransactionsFromComment() {
return true;
}
}

Event Timeline