1 | <?php |
||
5 | class ControllerElement extends SimpleElementAbstract implements ConfigElementInterface |
||
6 | { |
||
7 | /** |
||
8 | * @param string $type |
||
9 | * @return boolean |
||
10 | */ |
||
11 | public function supports($type) |
||
15 | |||
16 | /** |
||
17 | * @param \SimpleXMLElement $xml |
||
18 | * @param string $type |
||
19 | * @param string $moduleName |
||
20 | * @return \SimpleXmlElement |
||
21 | */ |
||
22 | public function addElementToXml(\SimpleXMLElement $xml, $type, $moduleName) |
||
32 | |||
33 | /** |
||
34 | * @param \SimpleXMLElement $xml |
||
35 | * @param string $type |
||
36 | * @param string $moduleName |
||
37 | * @return boolean |
||
38 | */ |
||
39 | public function elementExistsInXml(\SimpleXMLElement $xml, $type, $moduleName) |
||
44 | |||
45 | /** |
||
46 | * @param string $moduleName |
||
47 | * @return string |
||
48 | */ |
||
49 | private function getModuleRouteName($moduleName) |
||
54 | } |
||
55 |