82 lines
2.2 KiB
PHP
82 lines
2.2 KiB
PHP
|
<?php
|
|||
|
if ($_SERVER["argv"][1] != "")
|
|||
|
$nbnews = $_SERVER["argv"][1];
|
|||
|
|
|||
|
if (!isset($nbnews))
|
|||
|
$nbnews = 5;
|
|||
|
|
|||
|
if (file_exists("tmp/presse.$nbnews.cache.php") && $_ENV["nbnews"] == "")
|
|||
|
include "tmp/presse.$nbnews.cache.php";
|
|||
|
else
|
|||
|
{
|
|||
|
include_once "include/theme.inc.php";
|
|||
|
include_once "themes/default/theme.php";
|
|||
|
require_once "include/standard.inc.php";
|
|||
|
require_once "include/rssparser.inc.php";
|
|||
|
extract($themeset, EXTR_OVERWRITE);
|
|||
|
|
|||
|
echo "<div align='center'><table border='0'><tr><td><img src='images/dazibaweb.gif' alt='Dazibaweb' /><b>2.0</b></td><td><img src='images/transparent.gif' alt='' class='icon_5' /></td><td><h1>Presse fran<61>aise</h1></td></tr></table><br />";
|
|||
|
//<table border='0'><tr>
|
|||
|
//<td class='dazibaweb'>";
|
|||
|
echo "<div class='dazibaweb'>\n";
|
|||
|
|
|||
|
$source = "backends/xml/libe.rss";
|
|||
|
$sitedata=get_sitedata($source);
|
|||
|
extract($sitedata);
|
|||
|
//$titre = "<a href=$link_site target=\"_blank\">$title_site</a>";
|
|||
|
$bodyclass="centerbody";
|
|||
|
//$footerboxtext="rdf";
|
|||
|
$module = "rssparser2";
|
|||
|
if (file_exists($source))
|
|||
|
include "modules/magicbox.php";
|
|||
|
|
|||
|
//echo "</td><td class='dazibaweb'>\n";
|
|||
|
|
|||
|
$source = "backends/xml/afp.rss";
|
|||
|
$sitedata=get_sitedata($source);
|
|||
|
extract($sitedata);
|
|||
|
//$titre = "<a href=$link_site target=\"_blank\">$title_site</a>";
|
|||
|
$bodyclass="centerbody";
|
|||
|
//$footerboxtext="rdf";
|
|||
|
$module = "rssparser2";
|
|||
|
if (file_exists($source))
|
|||
|
include "modules/magicbox.php";
|
|||
|
|
|||
|
//echo "</td></tr><tr><td>";
|
|||
|
|
|||
|
$source = "backends/xml/mondediplo.rss";
|
|||
|
$sitedata=get_sitedata($source);
|
|||
|
extract($sitedata);
|
|||
|
//$titre = "<a href=$link_site target=\"_blank\">$title_site</a>";
|
|||
|
$bodyclass="centerbody";
|
|||
|
//$footerboxtext="rdf";
|
|||
|
$module = "rssparser2";
|
|||
|
if (file_exists($source))
|
|||
|
include "modules/magicbox.php";
|
|||
|
|
|||
|
//echo "</td><td>";
|
|||
|
|
|||
|
$source = "backends/xml/nouvelobs.rss";
|
|||
|
$sitedata=get_sitedata($source);
|
|||
|
extract($sitedata);
|
|||
|
//$titre = "<a href=$link_site target=\"_blank\">$title_site</a>";
|
|||
|
$bodyclass="centerbody";
|
|||
|
//$footerboxtext="rdf";
|
|||
|
$module = "rssparser2";
|
|||
|
if (file_exists($source))
|
|||
|
include "modules/magicbox.php";
|
|||
|
|
|||
|
//echo "
|
|||
|
//</td></tr></table><br />
|
|||
|
echo "</div>";
|
|||
|
|
|||
|
$page="presse";
|
|||
|
include "include/nbnews.inc.php";
|
|||
|
|
|||
|
echo "</div><div align='right'><h6>";
|
|||
|
include "modules/backends/presse.date.txt";
|
|||
|
echo "</h6></div><hr /><br />";
|
|||
|
}
|
|||
|
|
|||
|
?>
|