Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class CourseTool extends AbstractTool implements ToolInterface |
||
12 | { |
||
13 | public function getName(): string |
||
14 | { |
||
15 | return 'course_tool'; |
||
16 | } |
||
17 | |||
18 | public function getLink(): string |
||
19 | { |
||
20 | return '/resources/course_tool/links'; |
||
21 | } |
||
22 | |||
23 | public function getIcon(): string |
||
24 | { |
||
25 | return 'mdi-file-link'; |
||
26 | } |
||
27 | |||
28 | public function getCategory(): string |
||
31 | } |
||
32 | |||
33 | public function getResourceTypes(): ?array |
||
34 | { |
||
40 |