mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
23 lines
366 B
PHP
23 lines
366 B
PHP
<?php
|
|
|
|
final class DifferentialPrimaryPaneView extends AphrontView {
|
|
|
|
private $id;
|
|
|
|
public function setID($id) {
|
|
$this->id = $id;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
|
|
return phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'differential-primary-pane',
|
|
'id' => $this->id,
|
|
),
|
|
$this->renderChildren());
|
|
}
|
|
|
|
}
|