[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/differential/view/ -> DifferentialPrimaryPaneView.php (source)

   1  <?php
   2  
   3  final class DifferentialPrimaryPaneView extends AphrontView {
   4  
   5    private $id;
   6  
   7    public function setID($id) {
   8      $this->id = $id;
   9      return $this;
  10    }
  11  
  12    public function render() {
  13  
  14      return phutil_tag(
  15        'div',
  16        array(
  17          'class' => 'differential-primary-pane',
  18          'id'    => $this->id,
  19        ),
  20        $this->renderChildren());
  21    }
  22  
  23  }


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