<?php
-if (!defined ("TYPO3_MODE")) die ("Access denied.");
+defined('TYPO3_MODE') or die();
-// normal services should be added here
-
-?>
\ No newline at end of file
+if (TYPO3_MODE === 'BE') {
+ $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['reports']['sv']['services'] = array(
+ 'title' => 'LLL:EXT:sv/Resources/Private/Language/locallang.xlf:report_title',
+ 'description' => 'LLL:EXT:sv/Resources/Private/Language/locallang.xlf:report_description',
+ 'icon' => 'EXT:sv/Resources/Public/Images/service-reports.png',
+ 'report' => \TYPO3\CMS\Sv\Report\ServicesListReport::class
+ );
+}