summaryrefslogtreecommitdiff
path: root/modules_v4
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2024-10-21 17:22:10 +0300
committerGreg Roach <greg@subaqua.co.uk>2024-10-21 17:27:41 +0300
commit1270d2767576ed4a83917769b0ee3613e3b010bf (patch)
treee87354f5aac3234c090fba2829cde23ed2ed4465 /modules_v4
parent75a46c803ac19c42d8802a6681768de67b7c3169 (diff)
downloadwebtrees-1270d2767576ed4a83917769b0ee3613e3b010bf.tar.gz
webtrees-1270d2767576ed4a83917769b0ee3613e3b010bf.tar.bz2
webtrees-1270d2767576ed4a83917769b0ee3613e3b010bf.zip
Fix: #5046 - empty confirmation message
Diffstat (limited to 'modules_v4')
-rw-r--r--modules_v4/README.md32
1 files changed, 0 insertions, 32 deletions
diff --git a/modules_v4/README.md b/modules_v4/README.md
deleted file mode 100644
index 131e3bea80..0000000000
--- a/modules_v4/README.md
+++ /dev/null
@@ -1,32 +0,0 @@
-# THIRD-PARTY MODULES
-
-Many webtrees functions are provided by “modules”.
-Modules allows you to add additional features to webtrees and modify existing features.
-
-## Installing and uninstalling modules
-
-A module is a folder containing a file called `module.php`.
-There may be other files in the folder, such as CSS, JS, templates,
-languages, data, etc.
-
-To install a module, copy its folder to `/modules_v4`.
-
-To uninstall it, delete its folder from `/modules_v4`.
-
-Note that module names (i.e. the folder names) must not contain
-spaces or the characters `.`, `[` and `]`. It must also have a
-maximum length of 30 characters.
-
-TIP: renaming a module from `<module>` to `<module.disable>`
-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 language.
-
-There are several example modules available at
-https://github.com/webtrees
-
-The built-in modules can be found in `app/Module/`.
-These contain lots of useful examples that you can copy/paste.