‪TYPO3CMS  10.4
Modes.php
Go to the documentation of this file.
1 <?php
2 
6 return [
7  'css' => [
8  'module' => 'cm/mode/css/css',
9  'extensions' => ['css'],
10  ],
11  'html' => [
12  'module' => 'cm/mode/htmlmixed/htmlmixed',
13  'extensions' => ['htm', 'html'],
14  'default' => true,
15  ],
16  'javascript' => [
17  'module' => 'cm/mode/javascript/javascript',
18  'extensions' => ['javascript'],
19  ],
20  'php' => [
21  'module' => 'cm/mode/php/php',
22  'extensions' => ['php', 'php5', 'php7', 'phps'],
23  ],
24  'typoscript' => [
25  'module' => 'TYPO3/CMS/T3editor/Mode/typoscript/typoscript',
26  'extensions' => ['ts', 'typoscript', 'tsconfig'],
27  ],
28  'xml' => [
29  'module' => 'cm/mode/xml/xml',
30  'extensions' => ['xml']
31  ]
32 ];