Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/view/phui/PHUIPropertyGroupView.php
12249 views
1
<?php
2
3
final 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
}
25
26