@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
at recaptime-dev/main 19 lines 426 B view raw
1<?php 2 3final class ConpherenceThreadRemarkupRule 4 extends PhabricatorObjectRemarkupRule { 5 6 protected function getObjectNamePrefix() { 7 return 'Z'; 8 } 9 10 protected function loadObjects(array $ids) { 11 $viewer = $this->getEngine()->getConfig('viewer'); 12 $threads = id(new ConpherenceThreadQuery()) 13 ->setViewer($viewer) 14 ->withIDs($ids) 15 ->execute(); 16 return mpull($threads, null, 'getID'); 17 } 18 19}