Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Each tag expects attributes which have the same value as their fields in the corresponding database table.

The order of the XML tags must be the same as listed below.

Tag nameDescriptionAvailable attributesExample
areasManaging areas
NameDescription
parentName of the parent area or 0
menulessArea has left menu frame (0) or not (1)
Code Block
languagehtml/xml
<areas>
	<area parent="linkchecker" menuless="1">lc_whitelist</area>
</areas>
actionsManaging actions
NameDescription
areaName of the area
Code Block
languagehtml/xml
<actions>
	<action area="linkchecker">linkchecker</action>
</actions>
framesManaging frames
NameDescription
areaName of the area
filetypeType of the file (mostly "main")
namerelative path to frame include file
frameIdNumber of the frame (from 1 to 4)
Code Block
languagehtml/xml
<frames>
	<frame area="linkchecker" filetype="main" name="linkchecker/includes/include.linkchecker.php" frameId="4" />
</frames>
nav_mainManaging main navigationsnone
Code Block
languagehtml/xml
<nav_main>
	<nav>locationname</nav>
</nav_main>
nav_subManaging sub navigations

area, level, navm

NameDescription
areaName of the area
levelNavigation level (0 or 1)
navmMain navigation ID
Code Block
languagehtml/xml
<nav_sub>
	<nav area="linkchecker" level="0" navm="1">linkchecker/xml/lang_de_DE.xml;navigation/content/linkchecker/main</nav>
</nav_sub>
nav_mainManaging main navigationsnone
Code Block
languagehtml/xml
<nav_main>
	<nav>locationname</nav>
</nav_main>

Tag content_types - registration of own content types

...