xref: /webtrees/modules_v4/README.md (revision b8fc901f205cd6af65496b916bf63547a3065a2f)
1# THIRD-PARTY MODULES
2
3Many webtrees functions are provided by “modules”.
4Modules allows you to add additional features to webtrees and modify existing features.
5
6## Installing and uninstalling modules
7
8A module is a folder containing a file called `module.php`.
9There may be other files in the folder, such as CSS, JS, templates,
10languages, data, etc.
11
12To install a module, copy its folder to `modules_v4`.
13
14To uninstall it, delete its folder from `modules_v4`.
15
16Note that module names (i.e. the folder names) must not contain
17spaces or the characters `.`, `[` and `]`.  It must also have a
18maximum length of 30 characters.
19
20TIP: renaming a module from `<module>` to `<module.disable>`
21is a quick way to hide it from webtrees.  This works because
22modules containing `.` are ignored.
23
24## Writing modules
25
26To write a module, you need to understand the PHP programming langauge.
27
28The rest of this document is aimed at PHP developers.
29
30TIP: The built-in modules can be found in `app/Module/*.php`.
31These contain lots of useful examples that you can copy/paste.
32
33## Creating a custom module.
34
35This is the minimum code needed to create a custom module.
36
37```php
38<?php
39
40use Fisharebest\Webtrees\Module\AbstractModule;
41use Fisharebest\Webtrees\Module\ModuleCustomInterface;
42use Fisharebest\Webtrees\Module\ModuleCustomTrait;
43
44return new class extends AbstractModule implements ModuleCustomInterface {
45    use ModuleCustomTrait;
46
47    /**
48     * How should this module be labelled on tabs, menus, etc.?
49     *
50     * @return string
51     */
52    public function title(): string
53    {
54        return 'My Custom module';
55    }
56
57    /**
58     * A sentence describing what this module does.
59     *
60     * @return string
61     */
62    public function description(): string
63    {
64        return 'This module doesn‘t do anything';
65    }
66};
67```
68
69If you plan to share your modules with other webtrees users, you should
70provide them with support/contact/version information.  This way they will
71know where to go for updates, support, etc.
72Look at the functions and comments in `app/ModuleCustomTrait.php`.
73
74## Available interfaces
75
76Custom modules *must* implement `ModuleCustomInterface` interface.
77They *may* implement one or more of the following interfaces:
78
79* `ModuleAnalyticsInterface` - adds a tracking/analytics provider.
80* `ModuleBlockInterface` - adds a block to the home pages.
81* `ModuleChartInterface` - adds a chart to the chart menu.
82* `ModuleConfigInterface` - adds a configuration page to the control panel.
83* `ModuleGlobalInterface` - adds CSS and JS to all page.
84* `ModuleListInterface` - adds a list to the list menu.
85* `ModuleMenuInterface` - adds an entry to the main menu.
86* `ModuleReportInterface` - adds a report to the report menu.
87* `ModuleSidebarInterface` - adds a sidebar to the individual pages.
88* `ModuleTabInterface` - adds a tab to the individual pages.
89* `ModuleThemeInterface` - adds a theme (this interface is still being developed).
90
91For each module interface that you implement, you must also use the corresponding trait.
92If you don't do this, your module may break whenever the module interface is updated.
93
94Where possible, the interfaces won't change - however new methods may be added
95and existing methods may be deprecated.
96
97Modules may also implement the following interfaces, which allow them to integrate
98more deeply into the application.
99
100* `MiddlewareInterface` - allows a module to intercept the HTTP request/response cycle.
101
102## How to extend/modify an existing modules
103
104To create a module that is just a modified version of an existing module,
105you can extend the existing module (instead of extending `AbstractModule`).
106
107```php
108<?php
109use Fisharebest\Webtrees\Module\ModuleCustomInterface;
110use Fisharebest\Webtrees\Module\ModuleCustomTrait;
111use Fisharebest\Webtrees\Module\PedigreeChartModule;
112
113/**
114 * Creating an anoymous class will prevent conflicts with other custom modules.
115 */
116return new class extends PedigreeChartModule implements ModuleCustomInterface {
117    use ModuleCustomTrait;
118
119    /**
120     * @return string
121     */
122    public function description(): string
123    {
124        return 'A modified version of the pedigree chart';
125    }
126
127    // Change the default layout...
128    public const DEFAULT_ORIENTATION = parent::STYLE_DOWN;
129};
130```
131
132## Dependency Injection
133
134webtrees uses the “Dependency Injection” pattern extensively.  This is a system for
135automatically generating objects.  The advantages over using `new SomeClass()` are
136
137* Easier testing - you can pass "dummy" objects to your class.
138* Run-time resolution - you can request an Interface, and webtrees will find a specific instance for you.
139* Can swap implementations at runtime.
140
141Note that you cannot type-hint the following objects in the constructor, as they are not
142created until after the modules.
143
144* other modules
145* interfaces, such as `UserInterface` or `LocaleInterface` (the current user and language)
146* the current tree `Tree` or objects that depend on it (`Statistics`)
147as these objects are not created until after the module is created.
148
149Instead, these objects can be obtained from the request object. e.g.
150```php
151$tree = $request->getAttribute('tree');
152$user = $request->getAttribute('user');
153```
154
155```php
156<?php
157use Fisharebest\Webtrees\Module\AbstractModule;
158use Fisharebest\Webtrees\Module\ModuleCustomInterface;
159use Fisharebest\Webtrees\Module\ModuleCustomTrait;
160use Fisharebest\Webtrees\Services\TimeoutService;
161use Psr\Http\Message\ResponseInterface;
162use Psr\Http\Message\ServerRequestInterface;
163
164/**
165 * Creating an anoymous class will prevent conflicts with other custom modules.
166 */
167return new class extends AbstractModule implements ModuleCustomInterface {
168    use ModuleCustomTrait;
169
170    /** @var TimeoutService */
171    protected $timeout_service;
172
173    /**
174     * IMPORTANT - the constructor is called for *all* modules, even ones
175     * that are disabled.  You should do little more than initialise your
176     * private/protected members.
177     *
178     * @param TimeoutService $timeout_service
179     */
180    public function __construct(TimeoutService $timeout_service)
181    {
182        $this->timeout_service = $timeout_service;
183    }
184
185    /**
186     * Methods that are called in response to HTTP requests use
187     * dependency-injection.  You'll almost certainly need the request
188     * object.
189     *
190     * @param ServerRequestInterface $request
191     *
192     * @return ResponseInterface
193     */
194    public function getFooBarAction(ServerRequestInterface $request): ResponseInterface
195    {
196        // This assumes that there is a tree parameter in the URL.
197        $tree = $request->getAttribute('tree');
198
199        // This will be a User (or a GuestUser for visitors).
200        $user = $request->getAttribute('user');
201
202        $html = $tree->name() . '/' . $user->realName();
203
204        return response($html);
205    }
206};
207```
208