set_template(__DIR__.'/templates/latest_articles.html'); $html->set_tag('openside', fusion_get_function('openside', $info['title'])); $html->set_tag('closeside', fusion_get_function('closeside')); add_to_jquery("$('[data-trim-text]').trim_text();"); if (!empty($info['item'])) { foreach ($info['item'] as $data) { $html->set_block('article', [ 'article_url' => $data['article_url'], 'article_title' => $data['article_title'], 'author' => $locale['global_070'].' '.$data['profile_link'], 'bullet' => $info['theme_bullet'] ]); } } else { $html->set_block('no_item', ['message' => $info['no_item']]); } echo $html->get_output(); } }