forked from Tywed/news-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module.php
38 lines (28 loc) · 1.06 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
<?php
namespace Tywed\Webtrees\Module\NewsMenu;
use Fisharebest\Webtrees\Webtrees;
use Illuminate\Support\Collection;
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;
}
$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 new NewsMenu();