Skip to content

Template Delete Package Installation Plugin#

Available since WoltLab Suite 5.5.

Deletes frontend templates installed with the template package installation plugin.

You cannot delete templates provided by other packages.

Components#

Each item is described as a <template> element with an optional application, which behaves like it does for acp templates. The templates are identified by their name like when adding template listeners, i.e. by the file name without the .tpl file extension.

Example#

templateDelete.xml
1
2
3
4
5
6
7
<?xml version="1.0" encoding="UTF-8"?>
<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/2019/templateDelete.xsd">
    <delete>
        <template>fouAdd</template>
        <template application="app">__appAdd</template>
    </delete>
</data>

Last update: 2021-06-10