I have some headerFields that I display very well. My only problem is that I have a unixtimestamp that I whant to display as hour and minutes (like 13:05), but my_timestamp is displayed as "unixtimestamp" so just an integer.
How and where can I format "my_timestamp" to Date? It is normally simple like
- Code: Select all
date("H:m",$my_timestamp)
- Code: Select all
// List
'list' => array
(
'sorting' => array
(
'mode' => 4,
'fields' => array('is_ok'),
'headerFields' => array('my_description', 'my_timestamp''),
'flag' => 5,
'panelLayout' => 'sort,search,limit',
'child_record_callback' => array('tl_test', 'list_test')
),
Thanks for help
