<?php if ((isset($list->rating) && $list->rating != '') && $params->get('show_rating')!=0)
{ ?>
<div class="ot_ratting">
<?php for ($j = 0; $j < $star; $j++)
{ ?>
<i class="glyphicon glyphicon-star"></i>
<?php } ?>
</div>
<?php } ?>
print_r($list) ; показывает
stdClass Object
(
[id] => 4
[name] => лр Екатерина Екатерина
[email] =>
[avatar] =>
[website_url] =>
[position] =>
[company_name] =>
[comment] => Качественная и быстрая распечатка.
[rating] => 5
[state] => 1
[featured] => 0
[ordering] => 4
[metakey] =>
[metadesc] =>
[created] => 2018-06-05 18:34:00
[created_by] => 930
[modified] => 0000-00-00 00:00:00
[modified_by] => 0
[checked_out] => 0
[checked_out_time] => 0000-00-00 00:00:00
[publish_up] => 0000-00-00 00:00:00
[publish_down] => 0000-00-00 00:00:00
[language] =>
)
print_r($list->rating) ; показывает только 5 ([rating] => 5)
print_r(count($list->rating)) ; показывает 1
print_r($params); показывает
Joomla\Registry\Registry Object
(
[data:protected] => stdClass Object
(
[ot_testimonies_style] => 5
[ot_speed] => 3000
[include_bootstrap] => 0
[count] => 3
[show_featured] => 0
[show_avatar] => 0
[show_name] => 1
[show_position] => 0
[show_company] => 0
[show_phone] => 0
[show_email] => 0
[show_website_url] => 0
[show_rating] => 1
[add_testimonies] => 0
[moduleclass_sfx] => coments_mod
[cache] => 0
[cache_time] => 900
[cachemode] => static
[module_tag] => div
[bootstrap_size] => 0
[header_tag] => p
[header_class] => coments
[style] => System-none
[noPageSpeed] => 1
)
[initialized:protected] => 1
[separator] => .
)