1 | <?php |
||
20 | abstract class AbstractType extends Model implements TypeInterface |
||
21 | { |
||
22 | use traits\Base; |
||
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | public static function displayName(): string |
||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | public function settingsHtml(): string |
||
45 | |||
46 | /** |
||
47 | * @inheritdoc |
||
48 | */ |
||
49 | public function inputHtml(Link $field, TypeInterface $value = null, ElementInterface $element = null): string |
||
53 | } |
||
54 |