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

8 lines
203 B
PHP

<?php
$data = $this->Hash->extract($row, $field['data_path']);;
if (!empty($field['isJson'])) {
$data = json_decode($data[0], true);
}
echo $this->PrettyPrint->ppArray($data);
?>