| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 59 | public function inputHtml(Link $field, TypeInterface $type = null, ElementInterface $element = null): string |
||
| 60 | { |
||
| 61 | return Craft::$app->getView()->renderTemplate( |
||
| 62 | 'link/_components/fieldtypes/Link/types/url/input', |
||
| 63 | [ |
||
| 64 | 'value' => $type, |
||
| 65 | 'element' => $element, |
||
| 66 | 'type' => $this, |
||
| 67 | 'field' => $field |
||
| 68 | ] |
||
| 69 | ); |
||
| 70 | } |
||
| 71 | } |
||
| 72 |