Тема: ^+V
![]() | ![]() |
$get_comments = $this->loader->model('comments')->get_last(5);//TODO: settings
foreach ($get_comments as $comm_item) {
$last_comments .= $this->tpl->load('comments_view_item', array(
'sub_data' => array(),
'name' => htmlspecialchars($comm_item['name']),
'text' => htmlspecialchars($comm_item['text'], ENT_QUOTES, 'UTF-8'),
'time' => $this->loader->plugin('functions')->display_time($comm_item['time']),
));
}