xref: /webtrees/modules_v4/README.md (revision e24053e5c68a36a62ca2714caf7fca093e7dc791)
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* `ModuleDataFixInterface` - adds a data fix to the manage-trees page.
83* `ModuleConfigInterface` - adds a configuration page to the control panel.
84* `ModuleGlobalInterface` - adds CSS and JS to all page.
85* `ModuleListInterface` - adds a list to the list menu.
86* `ModuleMenuInterface` - adds an entry to the main menu.
87* `ModuleReportInterface` - adds a report to the report menu.
88* `ModuleSidebarInterface` - adds a sidebar to the individual pages.
89* `ModuleTabInterface` - adds a tab to the individual pages.
90* `ModuleThemeInterface` - adds a theme (this interface is still being developed).
91
92For each module interface that you implement, you must also use the corresponding trait.
93If you don't do this, your module may break whenever the module interface is updated.
94
95Where possible, the interfaces won't change - however new methods may be added
96and existing methods may be deprecated.
97
98Modules may also implement the following interfaces, which allow them to integrate
99more deeply into the application.
100
101* `MiddlewareInterface` - allows a module to intercept the HTTP request/response cycle.
102
103## How to extend/modify an existing modules
104
105To create a module that is just a modified version of an existing module,
106you can extend the existing module (instead of extending `AbstractModule`).
107
108```php
109<?php
110use Fisharebest\Webtrees\Module\ModuleCustomInterface;
111use Fisharebest\Webtrees\Module\ModuleCustomTrait;
112use Fisharebest\Webtrees\Module\PedigreeChartModule;
113
114/**
115 * Creating an anoymous class will prevent conflicts with other custom modules.
116 */
117return new class extends PedigreeChartModule implements ModuleCustomInterface {
118    use ModuleCustomTrait;
119
120    /**
121     * @return string
122     */
123    public function description(): string
124    {
125        return 'A modified version of the pedigree chart';
126    }
127
128    // Change the default layout...
129    public const DEFAULT_ORIENTATION = parent::STYLE_DOWN;
130};
131```
132
133## Dependency Injection
134
135webtrees uses the “Dependency Injection” pattern extensively.  This is a system for
136automatically generating objects.  The advantages over using `new SomeClass()` are
137
138* Easier testing - you can pass "dummy" objects to your class.
139* Run-time resolution - you can request an Interface, and webtrees will find a specific instance for you.
140* Can swap implementations at runtime.
141
142Note that you cannot type-hint the following objects in the constructor, as they are not
143created until after the modules.
144
145* other modules
146* interfaces, such as `UserInterface` or `LocaleInterface` (the current user and language)
147* the current tree `Tree` or objects that depend on it (`Statistics`)
148as these objects are not created until after the module is created.
149
150Instead, these objects can be obtained from the request object. e.g.
151```php
152$tree = $request->getAttribute('tree');
153$user = $request->getAttribute('user');
154```
155
156```php
157<?php
158use Fisharebest\Webtrees\Module\AbstractModule;
159use Fisharebest\Webtrees\Module\ModuleCustomInterface;
160use Fisharebest\Webtrees\Module\ModuleCustomTrait;
161use Fisharebest\Webtrees\Services\TimeoutService;
162use Psr\Http\Message\ResponseInterface;
163use Psr\Http\Message\ServerRequestInterface;
164
165/**
166 * Creating an anoymous class will prevent conflicts with other custom modules.
167 */
168return new class extends AbstractModule implements ModuleCustomInterface {
169    use ModuleCustomTrait;
170
171    /** @var TimeoutService */
172    protected $timeout_service;
173
174    /**
175     * IMPORTANT - the constructor is called for *all* modules, even ones
176     * that are disabled.  You should do little more than initialise your
177     * private/protected members.
178     *
179     * @param TimeoutService $timeout_service
180     */
181    public function __construct(TimeoutService $timeout_service)
182    {
183        $this->timeout_service = $timeout_service;
184    }
185
186    /**
187     * Methods that are called in response to HTTP requests use
188     * dependency-injection.  You'll almost certainly need the request
189     * object.
190     *
191     * @param ServerRequestInterface $request
192     *
193     * @return ResponseInterface
194     */
195    public function getFooBarAction(ServerRequestInterface $request): ResponseInterface
196    {
197        // This assumes that there is a tree parameter in the URL.
198        $tree = $request->getAttribute('tree');
199
200        // This will be a User (or a GuestUser for visitors).
201        $user = $request->getAttribute('user');
202
203        $html = $tree->name() . '/' . $user->realName();
204
205        return response($html);
206    }
207};
208```
209