cerebrate/templates/element/genericElements/IndexTable/Fields/array.php

8 lines
203 B
PHP
Raw Normal View History

2021-04-30 23:59:53 +02:00
<?php
$data = $this->Hash->extract($row, $field['data_path']);;
if (!empty($field['isJson'])) {
$data = json_decode($data[0], true);
}
echo $this->PrettyPrint->ppArray($data);
?>