mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-30 18:52:42 +01:00
33 lines
765 B
PHP
33 lines
765 B
PHP
|
<?php
|
||
|
|
||
|
final class AphrontContextBarView extends AphrontView {
|
||
|
|
||
|
protected $buttons = array();
|
||
|
|
||
|
public function addButton($button) {
|
||
|
$this->buttons[] = $button;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function render() {
|
||
|
$view = new AphrontNullView();
|
||
|
$view->appendChild($this->buttons);
|
||
|
|
||
|
require_celerity_resource('aphront-contextbar-view-css');
|
||
|
|
||
|
return
|
||
|
'<div class="aphront-contextbar-view">'.
|
||
|
'<div class="aphront-contextbar-core">'.
|
||
|
'<div class="aphront-contextbar-buttons">'.
|
||
|
$view->render().
|
||
|
'</div>'.
|
||
|
'<div class="aphront-contextbar-content">'.
|
||
|
$this->renderChildren().
|
||
|
'</div>'.
|
||
|
'</div>'.
|
||
|
'<div style="clear: both;"></div>'.
|
||
|
'</div>';
|
||
|
}
|
||
|
|
||
|
}
|