Changeset View
Changeset View
Standalone View
Standalone View
src/applications/diviner/view/DivinerReturnTableView.php
| Show First 20 Lines • Show All 55 Lines • ▼ Show 20 Lines | public function getTagContent() { | ||||
| $rows = phutil_tag( | $rows = phutil_tag( | ||||
| 'tr', | 'tr', | ||||
| array(), | array(), | ||||
| $cells); | $cells); | ||||
| $table = phutil_tag( | $table = phutil_tag( | ||||
| 'table', | 'table', | ||||
| array( | array( | ||||
| 'class' => 'diviner-return-table-view'), | 'class' => 'diviner-return-table-view', | ||||
| ), | |||||
| $rows); | $rows); | ||||
| $header = phutil_tag( | $header = phutil_tag( | ||||
| 'span', | 'span', | ||||
| array( | array( | ||||
| 'class' => 'diviner-table-header' | 'class' => 'diviner-table-header', | ||||
| ), | ), | ||||
| $this->header); | $this->header); | ||||
| return array($header, $table); | return array($header, $table); | ||||
| } | } | ||||
| } | } | ||||