1 | <?php |
||
19 | class Url extends AbstractType |
||
20 | { |
||
21 | /** |
||
22 | * @var |
||
23 | */ |
||
24 | public $url; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $identifier = 'url'; |
||
30 | |||
31 | /** |
||
32 | * @inheritdoc |
||
33 | */ |
||
34 | public function init() |
||
39 | |||
40 | /** |
||
41 | * @inheritdoc |
||
42 | */ |
||
43 | public static function displayName(): string |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getUrl(): string |
||
55 | |||
56 | /** |
||
57 | * @inheritdoc |
||
58 | */ |
||
59 | public function inputHtml(Link $field, TypeInterface $type = null, ElementInterface $element = null): string |
||
71 | } |
||
72 |