Changeset View
Changeset View
Standalone View
Standalone View
src/applications/diviner/view/DivinerParameterTableView.php
| Show First 20 Lines • Show All 61 Lines • ▼ Show 20 Lines | foreach ($this->parameters as $param) { | ||||
| $docs); | $docs); | ||||
| $rows[] = phutil_tag('tr', array(), $cells); | $rows[] = phutil_tag('tr', array(), $cells); | ||||
| } | } | ||||
| $table = phutil_tag( | $table = phutil_tag( | ||||
| 'table', | 'table', | ||||
| array( | array( | ||||
| 'class' => 'diviner-parameter-table-view'), | 'class' => 'diviner-parameter-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); | ||||
| } | } | ||||
| } | } | ||||