|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
/** |
|
5
|
|
|
* @copyright Copyright (c) 2021 Jakob Röhrl <[email protected]> |
|
6
|
|
|
* |
|
7
|
|
|
* @author Jakob Röhrl <[email protected]> |
|
8
|
|
|
* |
|
9
|
|
|
* @license GNU AGPL version 3 or any later version |
|
10
|
|
|
* |
|
11
|
|
|
* This program is free software: you can redistribute it and/or modify |
|
12
|
|
|
* it under the terms of the GNU Affero General Public License as |
|
13
|
|
|
* published by the Free Software Foundation, either version 3 of the |
|
14
|
|
|
* License, or (at your option) any later version. |
|
15
|
|
|
* |
|
16
|
|
|
* This program is distributed in the hope that it will be useful, |
|
17
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
18
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
19
|
|
|
* GNU Affero General Public License for more details. |
|
20
|
|
|
* |
|
21
|
|
|
* You should have received a copy of the GNU Affero General Public License |
|
22
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
23
|
|
|
* |
|
24
|
|
|
*/ |
|
25
|
|
|
|
|
26
|
|
|
namespace OCA\Tasks\Dashboard; |
|
27
|
|
|
|
|
28
|
|
|
use OCA\Tasks\AppInfo\Application; |
|
29
|
|
|
use OCP\Dashboard\IWidget; |
|
30
|
|
|
use OCP\IL10N; |
|
31
|
|
|
|
|
32
|
|
|
class TasksWidget implements IWidget { |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
35
|
|
|
* @var IL10N |
|
36
|
|
|
*/ |
|
37
|
|
|
private $l10n; |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* TasksWidget constructor. |
|
41
|
|
|
* @param IL10N $l10n |
|
42
|
|
|
*/ |
|
43
|
|
|
public function __construct(IL10N $l10n) { |
|
44
|
|
|
$this->l10n = $l10n; |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* @inheritDoc |
|
49
|
|
|
*/ |
|
50
|
|
|
public function getId(): string { |
|
51
|
|
|
return Application::APP_ID; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* @inheritDoc |
|
56
|
|
|
*/ |
|
57
|
|
|
public function getTitle(): string { |
|
58
|
|
|
return $this->l10n->t('Upcoming tasks'); |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* @inheritDoc |
|
63
|
|
|
*/ |
|
64
|
|
|
public function getOrder(): int { |
|
65
|
|
|
return 20; |
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
|
|
/** |
|
69
|
|
|
* @inheritDoc |
|
70
|
|
|
*/ |
|
71
|
|
|
public function getIconClass(): string { |
|
72
|
|
|
return 'icon-tasks'; |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
/** |
|
76
|
|
|
* @inheritDoc |
|
77
|
|
|
*/ |
|
78
|
|
|
public function getUrl(): ?string { |
|
79
|
|
|
return null; |
|
80
|
|
|
} |
|
81
|
|
|
|
|
82
|
|
|
/** |
|
83
|
|
|
* @inheritDoc |
|
84
|
|
|
*/ |
|
85
|
|
|
public function load(): void { |
|
86
|
|
|
\OCP\Util::addScript('tasks', 'tasks-dashboard'); |
|
87
|
|
|
} |
|
88
|
|
|
} |
|
89
|
|
|
|