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