| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 45 | public function build_multi_select(array $option_ary, $selected_items, $field) |
||
| 46 | { |
||
| 47 | $this->ptemplate->assign_vars(array( |
||
| 48 | 'field' => $field, |
||
| 49 | 'options' => $option_ary, |
||
| 50 | 'selected' => cfg_utils::ensure_array($selected_items), |
||
| 51 | )); |
||
| 52 | |||
| 53 | return $this->ptemplate->render_view('blitze/sitemaker', 'cfg_fields/multi_select.html', 'multi_select'); |
||
| 54 | |||
| 57 |