@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 24 lines 432 B view raw
1<?php 2 3final class PHUIPropertyGroupView extends AphrontTagView { 4 5 private $items; 6 7 public function addPropertyList(PHUIPropertyListView $item) { 8 $this->items[] = $item; 9 } 10 11 protected function canAppendChild() { 12 return false; 13 } 14 15 protected function getTagAttributes() { 16 return array( 17 'class' => 'phui-property-list-view', 18 ); 19 } 20 21 protected function getTagContent() { 22 return $this->items; 23 } 24}