* @author Froxlor team (2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package AJAX * */ require_once dirname(__DIR__) . '/vendor/autoload.php'; // Load the user settings if (! file_exists('./userdata.inc.php')) { die(); } require './userdata.inc.php'; require './tables.inc.php'; if (isset($_POST['action'])) { $action = $_POST['action']; } elseif (isset($_GET['action'])) { $action = $_GET['action']; } else { $action = ""; } if ($action == "newsfeed") { if (isset($_GET['role']) && $_GET['role'] == "customer") { $feed = \Froxlor\Settings::Get("customer.news_feed_url"); if (empty(trim($feed))) { $feed = "https://inside.froxlor.org/news/"; } } else { $feed = "https://inside.froxlor.org/news/"; } if (function_exists("simplexml_load_file") == false) { outputItem("Newsfeed not available due to missing php-simplexml extension", "Please install the php-simplexml extension in order to view our newsfeed."); exit(); } if (function_exists('curl_version')) { $output = \Froxlor\Http\HttpClient::urlGet($feed); $news = simplexml_load_string(trim($output)); } else { outputItem("Newsfeed not available due to missing php-curl extension", "Please install the php-curl extension in order to view our newsfeed."); exit(); } if ($news !== false) { for ($i = 0; $i < 3; $i ++) { $item = $news->channel->item[$i]; $title = (string) $item->title; $link = (string) $item->link; $date = date("Y-m-d G:i", strtotime($item->pubDate)); $content = preg_replace("/[\r\n]+/", " ", strip_tags($item->description)); $content = substr($content, 0, 150) . "..."; outputItem($title, $content, $link, $date); } } else { echo ""; } } else { echo "No action set."; } function outputItem($title, $content, $link = null, $date = null) { echo "
  • "; if (! empty($link)) { echo ""; } echo $title; if (! empty($link)) { echo ""; } echo ""; if (! empty($date)) { echo " {$date} "; } echo "

    {$content}

  • "; }