1 | <?php |
||
24 | class CreatePage extends BaseCreatePage implements CreatePageInterface |
||
25 | { |
||
26 | use SpecifiesItsCode; |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function countTaxons() |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function countTaxonsByName($name) |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | public function chooseParent(TaxonInterface $taxon) |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function deleteTaxonOnPageByName($name) |
||
76 | |||
77 | /** |
||
78 | * {@inheritdoc} |
||
79 | */ |
||
80 | public function describeItAs($description, $languageCode) |
||
84 | |||
85 | /** |
||
86 | * {@inheritdoc} |
||
87 | */ |
||
88 | public function hasTaxonWithName($name) |
||
92 | |||
93 | /** |
||
94 | * {@inheritdoc} |
||
95 | */ |
||
96 | public function nameIt($name, $languageCode) |
||
100 | |||
101 | /** |
||
102 | * {@inheritdoc} |
||
103 | */ |
||
104 | public function specifyPermalink($permalink, $languageCode) |
||
108 | |||
109 | /** |
||
110 | * {@inheritdoc} |
||
111 | */ |
||
112 | protected function getDefinedElements() |
||
123 | |||
124 | /** |
||
125 | * @return NodeElement[] |
||
126 | * |
||
127 | * @throws ElementNotFoundException |
||
128 | */ |
||
129 | private function getLeafs() |
||
136 | } |
||
137 |