1 | <?php |
||
25 | class UpdatePage extends BaseUpdatePage implements UpdatePageInterface |
||
26 | { |
||
27 | use ChecksCodeImmutability; |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function changeName($name, $language) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function isTypeDisabled() |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | protected function getCodeElement() |
||
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | public function changeAttributeValue(string $oldValue, string $newValue): void |
||
60 | |||
61 | /** |
||
62 | * {@inheritdoc} |
||
63 | */ |
||
64 | public function hasAttributeValue(string $value): bool |
||
68 | |||
69 | /** |
||
70 | * {@inheritdoc} |
||
71 | */ |
||
72 | public function addAttributeValue(string $value): void |
||
77 | |||
78 | /** |
||
79 | * {@inheritdoc} |
||
80 | */ |
||
81 | public function deleteAttributeValue(string $value): void |
||
86 | |||
87 | /** |
||
88 | * {@inheritdoc} |
||
89 | */ |
||
90 | protected function getDefinedElements() |
||
100 | |||
101 | /** |
||
102 | * @return NodeElement[] |
||
103 | */ |
||
104 | private function getAttributeChoiceElements(): array |
||
110 | |||
111 | /** |
||
112 | * @return NodeElement |
||
113 | */ |
||
114 | private function getLastAttributeChoiceElement(): NodeElement |
||
122 | } |
||
123 |