| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | public function getLink(): string |
||
| 54 | { |
||
| 55 | if (ExtensionManagementUtility::isLoaded('belog')) { |
||
| 56 | $uriBuilder = GeneralUtility::makeInstance(UriBuilder::class); |
||
| 57 | return (string)$uriBuilder->buildUriFromRoute( |
||
| 58 | 'system_BelogLog', |
||
| 59 | ['tx_belog_system_beloglog[constraint][action]' => -1] |
||
| 60 | ); |
||
| 61 | } |
||
| 62 | |||
| 63 | return ''; |
||
| 64 | } |
||
| 71 |