[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/view/phui/ -> PHUIPropertyGroupView.php (source)

   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  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1