-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathext_tables.php
More file actions
22 lines (19 loc) · 635 Bytes
/
ext_tables.php
File metadata and controls
22 lines (19 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* General ext_tables file and also an example for your own extension
*
* @category Extension
* @author Tim Lochmüller
*/
// Note: Drop TYPO3_MODE if extension is TYPO3 >= v11 only
defined('TYPO3_MODE') or defined('TYPO3') or die();
// define TAB for XliffWriter template
defined('TAB') ?: define('TAB', chr(9));
\HDNET\Autoloader\Loader::extTables('HDNET', 'autoloader', [
'Hooks',
'StaticTyposcript',
]);
$GLOBALS['TYPO3_CONF_VARS']['SYS']['lang']['writer'] = [
'xlf' => \HDNET\Autoloader\Localization\Writer\XliffWriter::class,
'xml' => \HDNET\Autoloader\Localization\Writer\XmlWriter::class,
];