<?php
-if (!defined('TYPO3_MODE')) {
- die('Access denied.');
-}
+defined('TYPO3_MODE') or die();
+
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/tx_sv_report.png',
- 'report' => 'TYPO3\\CMS\\Sv\\Report\\ServicesListReport'
+ 'icon' => 'EXT:sv/Resources/Public/Images/service-reports.png',
+ 'report' => \TYPO3\CMS\Sv\Report\ServicesListReport::class
);
}
-?>
\ No newline at end of file