2011-09-07 23:01:13 +02:00
|
|
|
<?php
|
|
|
|
|
2012-03-14 00:21:04 +01:00
|
|
|
final class JavelinViewExampleServerView extends AphrontView {
|
2011-09-07 23:01:13 +02:00
|
|
|
public function render() {
|
|
|
|
return phutil_render_tag(
|
|
|
|
'div',
|
|
|
|
array('class' => 'server-view'),
|
|
|
|
$this->renderChildren()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|