Custom Fields в модуле (Joomla 3)
Хочу вывести Custom Fields из статей в модуль.
<?php
defined('_JEXEC') or die;
JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR . '/components/com_fields/helpers/fields.php');
$jcFields = FieldsHelper::getFields('com_content.article', $item, true);
$array = json_decode(json_encode($jcFields), True);
$fields = [];
foreach ($array as $field) {
array_push($fields,$field['name'],$field['value'],$field['rawvalue']);
}
$field1 = $fields[19];
$field2 = $fields[24];
?>
В итоге ничего не выводит: Notice : Undefined index: value in... Notice : Undefined index: rawvalue in...