Page MenuHomec4science

PHUIPropertyGroupView.php
No OneTemporary

File Metadata

Created
Wed, Jul 3, 13:34

PHUIPropertyGroupView.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;
}
}

Event Timeline