Page MenuHomestyx hydra

AphrontContextBarView.php
No OneTemporary

AphrontContextBarView.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>';
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Nov 24, 12:45 PM (15 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
358369
Default Alt Text
AphrontContextBarView.php (765 B)

Event Timeline