-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.php
46 lines (35 loc) · 1.56 KB
/
module.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace Hartenthaler\Webtrees\Module\RelationIsDescriptorAddon;
use Fisharebest\Webtrees\Webtrees;
use Illuminate\Support\Collection;
//use Fisharebest\Webtrees\FlashMessages;
use function app;
use function str_contains;
// webtrees major version switch
if (defined("WT_MODULES_DIR")) {
// this is a webtrees 2.1 module. it cannot be used with webtrees 1.x (or 2.0.x). See README.md.
return;
}
//add our own dependencies
// note: in the current module system, this would happen anyway because all module.php's are executed
// whenever a single module is loaded (assuming these autoload.php's are called by the respective module.php's)
// so we aren't loading 'too much' here, as long as we properly filter 'disabled' modules, as in ModuleService.
// DO NOT USE $file HERE! see Module.loadModule($file) - we must not change that var!
$pattern = Webtrees::MODULES_DIR . '*/autoload.php';
$filenames = glob($pattern, GLOB_NOSORT);
Collection::make($filenames)
->filter(static function (string $filename): bool {
// Special characters will break PHP variable names.
// This also allows us to ignore modules called "foo.example" and "foo.disable"
$module_name = basename(dirname($filename));
foreach (['.', ' ', '[', ']'] as $character) {
if (str_contains($module_name, $character)) {
return false;
}
}
return strlen($module_name) <= 30;
})
->each(static function (string $filename): void {
require_once $filename;
});
return app(RelationIsDescriptorAddon::class);