2012-02-14 16:23:53 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class AphrontMiniPanelView extends AphrontView {
|
|
|
|
|
|
|
|
public function render() {
|
2013-02-13 14:50:15 -08:00
|
|
|
return phutil_tag(
|
|
|
|
'div',
|
|
|
|
array('class' => 'aphront-mini-panel-view'),
|
|
|
|
$this->renderChildren());
|
2012-02-14 16:23:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|