| Total Complexity | 5 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class Wiki extends AbstractTool implements ToolInterface |
||
| 12 | { |
||
| 13 | public function getTitle(): string |
||
| 14 | { |
||
| 15 | return 'wiki'; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function getIcon(): string |
||
| 19 | { |
||
| 20 | return 'mdi-view-dashboard-edit'; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getLink(): string |
||
| 24 | { |
||
| 25 | return '/main/wiki/index.php'; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getCategory(): string |
||
| 29 | { |
||
| 30 | return 'interaction'; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getResourceTypes(): ?array |
||
| 37 | ]; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |