@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at recaptime-dev/main 22 lines 359 B view raw
1<?php 2 3final class HeraldRemarkupFieldValue 4 extends HeraldFieldValue { 5 6 public function getFieldValueKey() { 7 return 'remarkup'; 8 } 9 10 public function getControlType() { 11 return self::CONTROL_REMARKUP; 12 } 13 14 public function renderFieldValue($value) { 15 return $value; 16 } 17 18 public function renderEditorValue($value) { 19 return $value; 20 } 21 22}