| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 51 | public function generateConfigurationFieldHtml($field){ |
||
| 52 | $type = $field->type; |
||
| 53 | $html = ''; |
||
| 54 | if($type === 'textarea'){ |
||
| 55 | $html = ''; |
||
| 56 | $html .= '<textarea data-detail_id="'.$field->id .'" class="form-control mongifield"></textarea>'; |
||
| 57 | }else{ |
||
| 58 | $html .= '<input type="'.$type.'" data-detail_id="'.$field->id .'" class="form-control mongifield">'; |
||
| 59 | } |
||
| 60 | return $html; |
||
| 61 | } |
||
| 63 |