| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 57 | public function build_multi_input($field, $sortable, array $values, $label = '') |
||
| 58 | { |
||
| 59 | $this->ptemplate->assign_vars(array( |
||
| 60 | 'field' => $field, |
||
| 61 | 'values' => array_filter((array) $values), |
||
| 62 | 'sortable' => $sortable, |
||
| 63 | 'label' => $label, |
||
| 64 | )); |
||
| 65 | |||
| 66 | return $this->ptemplate->render_view('blitze/sitemaker', 'cfg_fields/multi_input.html', 'multi_input_ui'); |
||
| 67 | } |
||
| 69 |