@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 20 lines 303 B view raw
1<?php 2 3final class PHUILauncherView 4 extends AphrontTagView { 5 6 protected function getTagName() { 7 return 'div'; 8 } 9 10 protected function getTagAttributes() { 11 $classes = array(); 12 13 $classes[] = 'phui-launcher-view'; 14 15 return array( 16 'class' => implode(' ', $classes), 17 ); 18 } 19 20}