Completed
Push — master ( 2cd52e...4f8ab2 )
by Julius
109:00 queued 44:19
created

Section::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 4
1
<?php
2
/**
3
 * @copyright Copyright (c) 2019 Julius Härtl <[email protected]>
4
 *
5
 * @author Julius Härtl <[email protected]>
6
 *
7
 * @license GNU AGPL version 3 or any later version
8
 *
9
 * This program is free software: you can redistribute it and/or modify
10
 * it under the terms of the GNU Affero General Public License as
11
 * published by the Free Software Foundation, either version 3 of the
12
 * License, or (at your option) any later version.
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 Affero General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU Affero General Public License
20
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
 *
22
 */
23
24
namespace OCA\AppOrder\Settings;
25
26
27
use OCP\IConfig;
28
use OCP\IL10N;
29
use OCP\IURLGenerator;
30
use OCP\Settings\IIconSection;
31
32
class Section implements IIconSection {
33
34
	private $config;
35
	private $defaults;
36
	private $urlGenerator;
37
	private $l10n;
38
39
	public function __construct(IConfig $config, \OC_Defaults $defaults, IURLGenerator $urlGenerator, IL10N $l10n) {
40
		$this->config = $config;
41
		$this->defaults = $defaults;
42
		$this->urlGenerator = $urlGenerator;
43
		$this->l10n = $l10n;
44
	}
45
46
	/**
47
	 * returns the relative path to an 16*16 icon describing the section.
48
	 * e.g. '/core/img/places/files.svg'
49
	 *
50
	 * @returns string
51
	 * @since 12
52
	 */
53
	public function getIcon() {
54
		return $this->urlGenerator->imagePath('core', 'actions/settings-dark.svg');
55
	}
56
57
	/**
58
	 * returns the ID of the section. It is supposed to be a lower case string,
59
	 * e.g. 'ldap'
60
	 *
61
	 * @returns string
62
	 * @since 9.1
63
	 */
64
	public function getID() {
65
		return 'apporder';
66
	}
67
68
	/**
69
	 * returns the translated name as it should be displayed, e.g. 'LDAP / AD
70
	 * integration'. Use the L10N service to translate it.
71
	 *
72
	 * @return string
73
	 * @since 9.1
74
	 */
75
	public function getName() {
76
		return $this->l10n->t('App order');
77
	}
78
79
	/**
80
	 * @return int whether the form should be rather on the top or bottom of
81
	 * the settings navigation. The sections are arranged in ascending order of
82
	 * the priority values. It is required to return a value between 0 and 99.
83
	 *
84
	 * E.g.: 70
85
	 * @since 9.1
86
	 */
87
	public function getPriority() {
88
		return 90;
89
	}
90
}
91