Total Complexity | 6 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class Group extends AbstractTool implements ToolInterface |
||
13 | { |
||
14 | public function getTitle(): string |
||
15 | { |
||
16 | return 'group'; |
||
17 | } |
||
18 | |||
19 | public function getTitleToShow(): string |
||
20 | { |
||
21 | return 'Groups'; |
||
22 | } |
||
23 | |||
24 | public function getLink(): string |
||
25 | { |
||
26 | return '/main/group/group.php'; |
||
27 | } |
||
28 | |||
29 | public function getIcon(): string |
||
32 | } |
||
33 | |||
34 | public function getCategory(): string |
||
35 | { |
||
36 | return 'interaction'; |
||
37 | } |
||
38 | |||
39 | public function getResourceTypes(): ?array |
||
44 | ]; |
||
45 | } |
||
46 | } |
||
47 |