Use folder structure instead of underscores in filenames
[GitHub/WoltLab/woltlab.github.io.git] / docs / package / pip / pip.md
CommitLineData
8659eb86 1# Package Installation Plugin Package Installation Plugin
0b768461 2
be3fe035
TD
3Registers new package installation plugins.
4
5## Components
6
7Each package installation plugin is described as an `<pip>` element with a `name` attribute and a PHP classname as the text content.
8
9003992d 9!!! warning "The package installation plugin’s class file must be installed into the `wcf` application and must not include classes outside the `\wcf\*` hierarchy to allow for proper uninstallation!"
be3fe035
TD
10
11## Example
12
13```xml
14<?xml version="1.0" encoding="UTF-8"?>
38ab2b9e 15<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/packageInstallationPlugin.xsd">
be3fe035
TD
16 <import>
17 <pip name="custom">wcf\system\package\plugin\CustomPackageInstallationPlugin</pip>
18 </import>
19 <delete>
20 <pip name="outdated" />
21 </delete>
22</data>
23```