10 lines
304 B
PHP
10 lines
304 B
PHP
|
<?php
|
||
|
if (!empty($this->Hash->extract($row, $field['data_path']))) {
|
||
|
$timestamp = $this->Hash->extract($row, $field['data_path'])[0];
|
||
|
if (!empty($field['time_format'])) {
|
||
|
$timestamp = date($field['time_format'], $timestamp);
|
||
|
}
|
||
|
echo h($timestamp);
|
||
|
}
|
||
|
?>
|