@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 PHUIFormationContentView
4 extends PHUIFormationColumnView {
5
6 public function getIsControlColumn() {
7 return true;
8 }
9
10 public function render() {
11 require_celerity_resource('phui-formation-view-css');
12
13 return phutil_tag(
14 'div',
15 array(
16 'class' => 'phui-formation-view-content',
17 ),
18 $this->renderChildren());
19 }
20
21}