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