Completed
Push — master ( a788f4...c76c8a )
by Morris
177:07 queued 157:40
created

ServerDevNotice::getPriority()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * @copyright 2016, Roeland Jago Douma <[email protected]>
4
 *
5
 * @author Arthur Schiwon <[email protected]>
6
 * @author Roeland Jago Douma <[email protected]>
7
 *
8
 * @license GNU AGPL version 3 or any later version
9
 *
10
 * This program is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU Affero General Public License as
12
 * published by the Free Software Foundation, either version 3 of the
13
 * License, or (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU Affero General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU Affero General Public License
21
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22
 *
23
 */
24
namespace OC\Settings\Personal;
25
26
use OCP\AppFramework\Http\TemplateResponse;
27
use OCP\Settings\ISettings;
28
29
class ServerDevNotice implements ISettings {
30
	/**
31
	 * @return TemplateResponse
32
	 */
33
	public function getForm() {
34
		return new TemplateResponse('settings', 'settings/personal/development.notice');
35
	}
36
37
	/**
38
	 * @return string the section ID, e.g. 'sharing'
39
	 */
40
	public function getSection() {
41
		return 'personal-info';
42
	}
43
44
	/**
45
	 * @return int whether the form should be rather on the top or bottom of
46
	 * the admin section. The forms are arranged in ascending order of the
47
	 * priority values. It is required to return a value between 0 and 100.
48
	 *
49
	 * E.g.: 70
50
	 */
51
	public function getPriority() {
52
		return 1000;
53
	}
54
}
55