Reputation: 1887
I want a new required field in TYPO3. In the content element "image/text" the images can include an altText. It should be possible, that this field is a required field.
I put this into my exttables.php
$TCA['tt_content']['columns']['altText']['config']['eval'] = 'required';
It doesn't work for me.
Any ideas?
Upvotes: 1
Views: 468
Reputation: 1887
Because the new File Abstraction Layer (FAL) the image references won't be saved in the tt_content table.
The answer is:
$TCA['sys_file_reference']['columns']['alternative']['config']['eval'] = 'required';
Upvotes: 3