@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 18 lines 367 B view raw
1<?php 2 3final class HeraldCoreStateReasons 4 extends HeraldStateReasons { 5 6 const REASON_SILENT = 'core.silent'; 7 8 public function explainReason($reason) { 9 $reasons = array( 10 self::REASON_SILENT => pht( 11 'This change applied silently, so mail and other notifications '. 12 'will not be sent.'), 13 ); 14 15 return idx($reasons, $reason); 16 } 17 18}