Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
75.00% |
3 / 4 |
|
66.67% |
2 / 3 |
CRAP | |
0.00% |
0 / 1 |
UserTags | |
75.00% |
3 / 4 |
|
66.67% |
2 / 3 |
3.14 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
getMode | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getListMode | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * Tag view helper |
5 | * |
6 | * PHP version 8 |
7 | * |
8 | * Copyright (C) Villanova University 2010. |
9 | * |
10 | * This program is free software; you can redistribute it and/or modify |
11 | * it under the terms of the GNU General Public License version 2, |
12 | * as published by the Free Software Foundation. |
13 | * |
14 | * This program is distributed in the hope that it will be useful, |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | * GNU General Public License for more details. |
18 | * |
19 | * You should have received a copy of the GNU General Public License |
20 | * along with this program; if not, write to the Free Software |
21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
22 | * |
23 | * @category VuFind |
24 | * @package View_Helpers |
25 | * @author Demian Katz <demian.katz@villanova.edu> |
26 | * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License |
27 | * @link https://vufind.org/wiki/development Wiki |
28 | */ |
29 | |
30 | namespace VuFind\View\Helper\Root; |
31 | |
32 | use Laminas\View\Helper\AbstractHelper; |
33 | |
34 | /** |
35 | * Tag view helper |
36 | * |
37 | * @category VuFind |
38 | * @package View_Helpers |
39 | * @author Demian Katz <demian.katz@villanova.edu> |
40 | * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License |
41 | * @link https://vufind.org/wiki/development Wiki |
42 | */ |
43 | class UserTags extends AbstractHelper |
44 | { |
45 | /** |
46 | * Tag mode (enabled or disabled) |
47 | * |
48 | * @var string |
49 | */ |
50 | protected $mode; |
51 | |
52 | /** |
53 | * List tag mode (enabled or disabled) |
54 | * |
55 | * @var string |
56 | */ |
57 | protected $listMode; |
58 | |
59 | /** |
60 | * Constructor |
61 | * |
62 | * @param string $mode Tag mode (enabled or disabled) |
63 | * @param string $listMode List tag mode (enabled or disabled) |
64 | */ |
65 | public function __construct($mode = 'enabled', $listMode = 'disabled') |
66 | { |
67 | $this->mode = $mode; |
68 | $this->listMode = $listMode; |
69 | } |
70 | |
71 | /** |
72 | * Get mode |
73 | * |
74 | * @return string |
75 | */ |
76 | public function getMode() |
77 | { |
78 | return $this->mode; |
79 | } |
80 | |
81 | /** |
82 | * Get list mode |
83 | * |
84 | * @return string |
85 | */ |
86 | public function getListMode() |
87 | { |
88 | return $this->listMode; |
89 | } |
90 | } |