Page MenuHomestyx hydra

AphrontListFilterView.php
No OneTemporary

AphrontListFilterView.php

<?php
final class AphrontListFilterView extends AphrontView {
private $buttons = array();
public function addButton($button) {
$this->buttons[] = $button;
return $this;
}
public function render() {
require_celerity_resource('aphront-list-filter-view-css');
$buttons = null;
if ($this->buttons) {
$buttons =
'<td class="aphront-list-filter-view-buttons">'.
implode("\n", $this->buttons).
'</td>';
}
return
'<table class="aphront-list-filter-view">'.
'<tr>'.
'<td class="aphront-list-filter-view-controls">'.
$this->renderChildren().
'</td>'.
$buttons.
'</tr>'.
'</table>';
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Apr 28, 7:44 PM (21 h, 21 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1316363
Default Alt Text
AphrontListFilterView.php (723 B)

Event Timeline