@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 30 lines 488 B view raw
1<?php 2 3final class HeraldBoolFieldValue 4 extends HeraldFieldValue { 5 6 public function getFieldValueKey() { 7 return 'bool'; 8 } 9 10 public function getControlType() { 11 return self::CONTROL_NONE; 12 } 13 14 public function renderFieldValue($value) { 15 return null; 16 } 17 18 public function renderEditorValue($value) { 19 return null; 20 } 21 22 public function renderTranscriptValue($value) { 23 if ($value) { 24 return pht('true'); 25 } else { 26 return pht('false'); 27 } 28 } 29 30}