cerebrate/app/templates/element/genericElements/IndexTable/Fields/timestamp.php

8 lines
211 B
PHP

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