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 static function displayName(): string |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getUrl(): string |
||
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public function inputHtml(Link $field, TypeInterface $type = null, ElementInterface $element = null): string |
||
62 | } |
||
63 |