1 | <?php |
||
19 | trait IdAttributeFromElementTrait |
||
20 | { |
||
21 | use IdAttributeTrait; |
||
22 | |||
23 | /** |
||
24 | * @return int|null |
||
25 | */ |
||
26 | abstract public function getFieldId(); |
||
27 | |||
28 | /** |
||
29 | * @return int|null |
||
30 | */ |
||
31 | abstract public function getElementId(); |
||
32 | |||
33 | /** |
||
34 | * @return int|null |
||
35 | */ |
||
36 | abstract public function getSiteId(); |
||
37 | |||
38 | /** |
||
39 | * @return string|null |
||
40 | */ |
||
41 | public function findId() |
||
49 | |||
50 | /** |
||
51 | * @return string|null |
||
52 | */ |
||
53 | protected function resolveId() |
||
73 | } |
||
74 |