1 | <?php |
||
34 | class TasksWidget implements IWidget { |
||
35 | |||
36 | /** |
||
37 | * @var IL10N |
||
38 | */ |
||
39 | private $l10n; |
||
40 | |||
41 | /** |
||
42 | * @var IInitialStateService |
||
43 | */ |
||
44 | private $initialStateService; |
||
45 | |||
46 | /** |
||
47 | * @var CollectionsService |
||
48 | */ |
||
49 | private $dataService; |
||
50 | |||
51 | /** |
||
52 | * CalendarWidget constructor. |
||
53 | * @param IL10N $l10n |
||
54 | * @param IInitialStateService $initialStateService |
||
55 | * @param CollectionsService $dataService |
||
56 | */ |
||
57 | public function __construct(IL10N $l10n, |
||
64 | |||
65 | /** |
||
66 | * @inheritDoc |
||
67 | */ |
||
68 | public function getId(): string { |
||
71 | |||
72 | /** |
||
73 | * @inheritDoc |
||
74 | */ |
||
75 | public function getTitle(): string { |
||
78 | |||
79 | /** |
||
80 | * @inheritDoc |
||
81 | */ |
||
82 | public function getOrder(): int { |
||
85 | |||
86 | /** |
||
87 | * @inheritDoc |
||
88 | */ |
||
89 | public function getIconClass(): string { |
||
92 | |||
93 | /** |
||
94 | * @inheritDoc |
||
95 | */ |
||
96 | public function getUrl(): ?string { |
||
99 | |||
100 | /** |
||
101 | * @inheritDoc |
||
102 | */ |
||
103 | public function load(): void { |
||
110 | } |
||
111 |