uses('simplepie'); $app->tpl->newTemplate('dashboard/templates/custom_menu.htm'); $app->uses('getconf'); $misc_config = $app->getconf->get_global_config('misc'); //* We want to show the news only to the admin user if($misc_config['dashboard_atom_url'] != '') { if(!isset($_SESSION['s']['rss_news'])) { $app->simplepie->set_feed_url('http://www.ispconfig.org/atom'); $app->simplepie->enable_cache(false); $app->simplepie->init(); $items = $app->simplepie->get_items(); $rows = array(); $n = 1; foreach ($items as $item) { //* We want to show only the first 10 news records if($n <= 10) { $rows[] = array('title' => $item->get_title(), 'link' => $item->get_link(), 'content' => $item->get_content(), 'date' => $item->get_date('Y-m-d') ); } $n++; } $_SESSION['s']['rss_news'] = $rows; } else { $rows = $_SESSION['s']['rss_news']; } $app->tpl->setVar('latest_news_txt',$app->lng('latest_news_txt')); } $app->tpl->setLoop('news',$rows); ?>