[Typo3-dev] date format in list module
Thomas Murphy
murphy at thepanemgroup.com
Fri Aug 6 18:18:00 CEST 2004
Unfortunately, there is no solution to this problem.
I did a small hack to get this working for me, but it is a real dirty
thing. Basically I'm expecting every number bigger thann 100000 to be a
timestamp and convert it.
I posted it before:
I added these lines to /t3lib/class.t3lib_befunc.php , before the return
statement in function getRecordTitle()
//-----------------------------------------------------------
if((t3lib_div::testInt($t)) && ($t>100000)){
$t = t3lib_BEfunc::datetime($t);
}
//-----------------------------------------------------------
bye,
Murphy
Zach Davis wrote:
> Can anyone point me towards some info on how to get a custom ext
> record's date/time field to display as a formatted date string (using
> strftime or something like that) in the list module? I can see that
> tt_news does this -- the list module properly displays the time value as
> a date/time for tt_news records. I look in tca, and tables.php files for
> tt_news, and the typo3 API docs, all to no avail. Any help would be much
> appreciated.
>
> Thanks,
> Zach
> _______________________________________________
> Typo3-dev mailing list
> Typo3-dev at lists.netfielders.de
> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-dev
>
>
More information about the TYPO3-dev
mailing list