-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathext_tables.php
More file actions
15 lines (14 loc) · 612 Bytes
/
ext_tables.php
File metadata and controls
15 lines (14 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
call_user_func(
function () {
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['reports']['rest']['handler'] = [
'title' => 'LLL:EXT:rest/Resources/Private/Language/locallang_db.xlf:reports.handler.title',
'description' => 'LLL:EXT:rest/Resources/Private/Language/locallang_db.xlf:reports.handler.description',
// 'icon' => 'EXT:rest/Resources/Public/Icons/tx_additionalreports_' . $report[1] . '.png',
'report' => \Cundd\Rest\Documentation\HandlerReport::class,
];
}
);