Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
50 | public function inputHtml(Link $field, TypeInterface $type = null, ElementInterface $element = null): string |
||
51 | { |
||
52 | return Craft::$app->getView()->renderTemplate( |
||
53 | 'link/_components/fieldtypes/Link/types/url/input', |
||
54 | [ |
||
55 | 'value' => $type, |
||
56 | 'element' => $element, |
||
57 | 'type' => $this, |
||
58 | 'field' => $field |
||
59 | ] |
||
60 | ); |
||
61 | } |
||
62 | } |
||
63 |