mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-01 23:19:15 +01:00
Summary: Mostly straightforward. Test Plan: Browsed most of the affected interfaces. Reviewers: vrana, btrahan Reviewed By: vrana CC: aran Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4687
14 lines
231 B
PHP
14 lines
231 B
PHP
<?php
|
|
|
|
final class JavelinViewExampleServerView extends AphrontView {
|
|
|
|
public function render() {
|
|
return phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'server-view',
|
|
),
|
|
$this->renderChildren());
|
|
}
|
|
|
|
}
|