-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsys_file_processedfile.php
33 lines (30 loc) · 1.12 KB
/
sys_file_processedfile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
declare(strict_types=1);
/*
* This file is part of the "image_compression" Extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTCAcolumns('sys_file_processedfile', [
'image_compression_last_compressed' => [
'label' => 'LLL:EXT:image_compression/Resources/Private/Language/locallang_db.xlf:sys_file_processedfile.image_compression_last_compressed',
'exclude' => 1,
'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'dbType' => 'datetime',
'eval' => 'datetime',
],
],
'image_compression_last_checked' => [
'label' => 'LLL:EXT:image_compression/Resources/Private/Language/locallang_db.xlf:sys_file_processedfile.image_compression_last_checked',
'exclude' => 1,
'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'dbType' => 'datetime',
'eval' => 'datetime',
],
],
]);