mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
20 lines
364 B
PHP
20 lines
364 B
PHP
|
<?php
|
||
|
|
||
|
final class PhamePostRemarkupRule
|
||
|
extends PhabricatorObjectRemarkupRule {
|
||
|
|
||
|
protected function getObjectNamePrefix() {
|
||
|
return 'J';
|
||
|
}
|
||
|
|
||
|
protected function loadObjects(array $ids) {
|
||
|
$viewer = $this->getEngine()->getConfig('viewer');
|
||
|
|
||
|
return id(new PhamePostQuery())
|
||
|
->setViewer($viewer)
|
||
|
->withIDs($ids)
|
||
|
->execute();
|
||
|
}
|
||
|
|
||
|
}
|