AlbumModule   A
last analyzed

Complexity

Total Complexity 8

Size/Duplication

Total Lines 70
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 13
dl 0
loc 70
rs 10
c 0
b 0
f 0
wmc 8

5 Methods

Rating   Name   Duplication   Size   Complexity  
A defaultTabOrder() 0 3 1
A description() 0 4 1
A getMedia() 0 15 4
A title() 0 4 1
A getTabContent() 0 4 1
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2023 webtrees development team
6
 * This program is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
 * GNU General Public License for more details.
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16
 */
17
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Module;
21
22
use Fisharebest\Webtrees\Gedcom;
23
use Fisharebest\Webtrees\I18N;
24
use Fisharebest\Webtrees\Individual;
25
use Fisharebest\Webtrees\Media;
26
use Fisharebest\Webtrees\Registry;
27
use Illuminate\Support\Collection;
28
29
/**
30
 * Class AlbumModule
31
 */
32
class AlbumModule extends MediaTabModule
33
{
34
    /**
35
     * How should this module be identified in the control panel, etc.?
36
     *
37
     * @return string
38
     */
39
    public function title(): string
40
    {
41
        /* I18N: Name of a module */
42
        return I18N::translate('Album');
43
    }
44
45
    /**
46
     * A sentence describing what this module does.
47
     *
48
     * @return string
49
     */
50
    public function description(): string
51
    {
52
        /* I18N: Description of the “Album” module */
53
        return I18N::translate('An alternative to the “media” tab, and an enhanced image viewer.');
54
    }
55
56
    /**
57
     * The default position for this tab.  It can be changed in the control panel.
58
     *
59
     * @return int
60
     */
61
    public function defaultTabOrder(): int
62
    {
63
        return 6;
64
    }
65
66
    /**
67
     * Generate the HTML content of this tab.
68
     *
69
     * @param Individual $individual
70
     *
71
     * @return string
72
     */
73
    public function getTabContent(Individual $individual): string
74
    {
75
        return view('modules/lightbox/tab', [
76
            'media_list' => $this->getMedia($individual),
77
        ]);
78
    }
79
80
    /**
81
     * Get the linked media objects.
82
     *
83
     * @param Individual $individual
84
     *
85
     * @return Collection<int,Media>
86
     */
87
    private function getMedia(Individual $individual): Collection
88
    {
89
        $media = new Collection();
90
91
        foreach ($this->getFactsWithMedia($individual) as $fact) {
92
            preg_match_all('/(?:^1|\n\d) OBJE @(' . Gedcom::REGEX_XREF . ')@/', $fact->gedcom(), $matches);
93
94
            foreach ($matches[1] as $xref) {
95
                if (!$media->has($xref)) {
96
                    $media->put($xref, Registry::mediaFactory()->make($xref, $individual->tree()));
97
                }
98
            }
99
        }
100
101
        return $media->filter()->filter(Media::accessFilter());
102
    }
103
}
104