GroupFormatter   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 0
dl 0
loc 20
ccs 7
cts 7
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A format() 0 5 1
1
<?php
2
/**
3
 * @author Sujith Haridasan <[email protected]>
4
 *
5
 * @copyright Copyright (c) 2016, ownCloud, Inc.
6
 * @license AGPL-3.0
7
 *
8
 * This code is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU Affero General Public License, version 3,
10
 * as published by the Free Software Foundation.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
 * GNU Affero General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Affero General Public License, version 3,
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
19
 *
20
 */
21
22
namespace OCA\Activity\Formatter;
23
24
use OCP\Activity\IEvent;
25
use OCP\IGroupManager;
26
use OCP\Util;
27
28
class GroupFormatter implements IFormatter {
29
30
	/** @var IGroupManager  */
31
	protected $groupManager;
32
33 3
	public function __construct(IGroupManager $groupManager) {
34 3
		$this->groupManager = $groupManager;
35 3
	}
36
37
	/**
38
	 * @param IEvent $event
39
	 * @param string $parameter The parameter to be formatted
40
	 * @return string The formatted parameter
41
	 */
42 2
	public function format(IEvent $event, $parameter) {
43 2
		$group = $this->groupManager->get($parameter);
44 2
		$displayName = $group->getDisplayName();
45 2
		return '<parameter>' . Util::sanitizeHTML($displayName) . '</parameter>';
46
	}
47
}
48