Completed
Push — develop ( 2ca406...b33d79 )
by Greg
27:09 queued 11:25
created

ModuleMapLinkTrait   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 76
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 12
c 1
b 0
f 0
dl 0
loc 76
rs 10
wmc 9

7 Methods

Rating   Name   Duplication   Size   Complexity  
A description() 0 3 1
A mapUrl() 0 3 1
A isMapAvailableForLocation() 0 3 2
A providerName() 0 3 1
A title() 0 3 1
A icon() 0 3 1
A mapLink() 0 11 2
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2021 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\Fact;
23
use Fisharebest\Webtrees\I18N;
24
25
use function e;
26
27
/**
28
 * Trait ModuleMapLinkTrait - default implementation of ModuleMapLinkInterface
29
 */
30
trait ModuleMapLinkTrait
31
{
32
    /**
33
     * How should this module be identified in the control panel, etc.?
34
     *
35
     * @return string
36
     */
37
    public function title(): string
38
    {
39
        return $this->providerName() . ' — ' . I18N::translate('Map link');
40
    }
41
42
    /**
43
     * A sentence describing what this module does.
44
     *
45
     * @return string
46
     */
47
    public function description(): string
48
    {
49
        return I18N::translate('Show the location of an event on an external map.');
50
    }
51
52
    /**
53
     * @param Fact $fact
54
     *
55
     * @return string
56
     */
57
    public function mapLink(Fact $fact): string
58
    {
59
        if ($this->isMapAvailableForLocation($fact)) {
60
            $icon  = $this->icon();
61
            $url   = $this->mapUrl($fact);
62
            $title = I18N::translate('View this location using %s', $this->providerName());
63
64
            return '<a href="' . e($url) . '" rel="nofollow" target="_top" title="' . $title . '">' . $icon . '</a>';
65
        }
66
67
        return '';
68
    }
69
70
    /**
71
     * Name of the map provider.
72
     *
73
     * @return string
74
     */
75
    protected function providerName(): string
76
    {
77
        return 'example.com';
78
    }
79
80
    /**
81
     * @param Fact $fact
82
     *
83
     * @return bool
84
     */
85
    protected function isMapAvailableForLocation(Fact $fact): bool
86
    {
87
        return $fact->latitude() !== null && $fact->longitude() !== null;
88
    }
89
90
    /**
91
     * @return string
92
     */
93
    protected function icon(): string
94
    {
95
        return 'icon';
96
    }
97
98
    /**
99
     * @param Fact $fact
100
     *
101
     * @return string
102
     */
103
    protected function mapUrl(Fact $fact): string
0 ignored issues
show
Unused Code introduced by
The parameter $fact is not used and could be removed. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-unused  annotation

103
    protected function mapUrl(/** @scrutinizer ignore-unused */ Fact $fact): string

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
104
    {
105
        return 'https://example.com';
106
    }
107
}
108