[TYPO3] titleText and altText required
Christian Heck
heck at punkt.de
Fri Aug 4 12:18:46 CEST 2006
Peter Russ wrote:
>
> No eval for type='text' ;-)
> Only chance is to set type='input' but this might cause other problems.
> So should be checked.
>
> Regs. Peter.
That's right.
Here is my extTables.php to get everything wirking:
----------------------
<?php
t3lib_div::loadTCA("tt_content");
// wandelt das altText Feld von Bildern im BE zu einem imput-Feld um.
$GLOBALS["TCA"]["tt_content"]["columns"]["altText"]["config"]["type"] =
"input";
// setze die Groesse und max. Zeichenlaenge des Impot-Feldes auf 40
$GLOBALS["TCA"]["tt_content"]["columns"]["altText"]["config"]["size"] =
"40";
$GLOBALS["TCA"]["tt_content"]["columns"]["altText"]["config"]["max"] = "40";
// evaluiere die eigegebenen daten und macht die Eingabe zwingend
$GLOBALS["TCA"]["tt_content"]["columns"]["altText"]["config"]["eval"] =
"trim, required, nospace";
// setze das Feld alias von einer Seite auf required "zwingend"
$GLOBALS["TCA"]["pages"]["columns"]["alias"]["config"]["eval"] = "required";
?>
----------------------
Have fun
Christian Heck
More information about the TYPO3-english
mailing list