-Vi posto le modifiche da fare per vedere gli rss esterni
-ho preso spunto da una modifica fatta qui
- utilizza il servizio di feed2js.org
il file da modificare è newsfeeds.php
portatevi alla fine del file e modificare così (ho commentato le modifiche)
Codice PHP:
$and = '';
if ( $feedid ) {
$and = "\n AND id = $feedid";
}
//inizio modifica
$query = "SELECT name, link, numarticles, cache_time"
. "\n FROM #__newsfeeds"
. "\n WHERE published = 1"
. "\n AND checked_out = 0"
. $and
. "\n ORDER BY ordering"
;
$database->setQuery( $query );
$newsfeeds = $database->loadObjectList();
$mainframe->SetPageTitle($menu->name);
foreach($newsfeeds as $newsfeed){
echo("
<script language=\"JavaScript\"
src=\"http://feed2js.org//feed2js.php?src=".urlencode($newsfeed->link)."&chan=y&num=".$newsfeed->numarticles."&desc=1&html=a\"
type=\"text/javascript\">
</script>
<noscript>
<a href=\"http://feed2js.org//feed2js.php?src=".urlencode($newsfeed->link)."&chan=y&num=".$newsfeed->numarticles."&desc=1&date=y&html=y\">
View RSS feed</a>
</noscript>");
}
//Fine Modifica
// HTML_newsfeed::showNewsfeeds( $newsfeeds, $LitePath, $cacheDir, $params );
}
?>
cia°