cgee
cgee

Reputation: 1887

TYPO3 6.2 required field - image/text

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

Answers (1)

cgee
cgee

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

Related Questions