mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
25 lines
432 B
PHP
25 lines
432 B
PHP
|
<?php
|
||
|
|
||
|
final class PHUIPropertyGroupView extends AphrontTagView {
|
||
|
|
||
|
private $items;
|
||
|
|
||
|
public function addPropertyList(PHUIPropertyListView $item) {
|
||
|
$this->items[] = $item;
|
||
|
}
|
||
|
|
||
|
protected function canAppendChild() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
protected function getTagAttributes() {
|
||
|
return array(
|
||
|
'class' => 'phui-property-list-view',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
protected function getTagContent() {
|
||
|
return $this->items;
|
||
|
}
|
||
|
}
|