# THIRD-PARTY MODULES Many webtrees functions are provided by “modules”. Modules allows you to add additional features to webtrees. ## Installing and uninstalling modules A module is a folder containing a file called `module.php`. There may be other files in the folder. To install a module, copy its folder to here. To uninstall it, delete its folder from here. Note that module names (i.e. their folder names) must not contain spaces or the characters `.`, `[` and `]`. TIP: renaming a module from `` to `` is a quick way to hide it from webtrees. This works because modules containing `.` are ignored. ## Writing modules To write a module, you need to understand the PHP programming langauge. The rest of this document is aimed at PHP developers. TIP: The built-in modules can be found in `app/Module/*.php`. These contain lots of usefule examples that you can copy/paste. ## Creating a custom module. This is the minimum code needed to create a custom module. ```php