Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class CustomCertificate extends AbstractPlugin |
||
10 | { |
||
11 | public function getTitle(): string |
||
12 | { |
||
13 | return 'customcertificate'; |
||
14 | } |
||
15 | |||
16 | public function getLink(): string |
||
17 | { |
||
18 | return '/plugin/customcertificate/start.php'; |
||
19 | } |
||
20 | |||
21 | public function getIcon(): string |
||
22 | { |
||
23 | return 'mdi-certificate-outline'; |
||
24 | } |
||
25 | |||
26 | public function getTitleToShow(): string |
||
29 | } |
||
30 | } |
||
31 |