| Conditions | 2 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 48 | public function build_radio(array $option_ary, $selected_item, $field) |
||
| 49 | { |
||
| 50 | $this->ptemplate->assign_vars(array( |
||
| 51 | 'field' => $field, |
||
| 52 | 'options' => $option_ary, |
||
| 53 | 'selected' => (is_array($selected_item)) ? array_pop($selected_item) : $selected_item, |
||
| 54 | )); |
||
| 55 | |||
| 56 | return $this->ptemplate->render_view('blitze/sitemaker', 'cfg_fields/radio.html', 'radio'); |
||
| 57 | } |
||
| 59 |