14 lines
528 B
PHP
14 lines
528 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
$GLOBALS['TL_DCA']['tl_module']['palettes']['timed_download_link'] = '{title_legend},name,headline,type;{timed_download_legend},timedDownloadText;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID';
|
|
|
|
$GLOBALS['TL_DCA']['tl_module']['fields']['timedDownloadText'] = [
|
|
'label' => &$GLOBALS['TL_LANG']['tl_module']['timedDownloadText'],
|
|
'exclude' => true,
|
|
'inputType' => 'textarea',
|
|
'eval' => ['rte' => 'tinyMCE', 'tl_class' => 'clr'],
|
|
'sql' => 'text NULL',
|
|
];
|