@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<?php
2
3final class PHUIDiffRevealIconView extends AphrontView {
4
5 public function render() {
6 $icon = id(new PHUIIconView())
7 ->setIcon('fa-comment')
8 ->addSigil('has-tooltip')
9 ->setMetadata(
10 array(
11 'tip' => pht('Expand'),
12 'align' => 'E',
13 'size' => 275,
14 ));
15
16 return javelin_tag(
17 'a',
18 array(
19 'href' => '#',
20 'class' => 'reveal-inline',
21 'sigil' => 'reveal-inline',
22 'mustcapture' => true,
23 ),
24 $icon);
25 }
26
27}