Skip to content
Extraits de code Groupes Projets
Valider 86fc014b rédigé par esj's avatar esj
Parcourir les fichiers

permettre la surcharge, et virer du code mort

parent e4d9723e
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -263,6 +263,7 @@ ecrire/inc_ajax_page.php -text ...@@ -263,6 +263,7 @@ ecrire/inc_ajax_page.php -text
ecrire/inc_articles.php -text ecrire/inc_articles.php -text
ecrire/inc_articles_edit.php -text ecrire/inc_articles_edit.php -text
ecrire/inc_articles_page.php -text ecrire/inc_articles_page.php -text
ecrire/inc_articles_tous.php -text
ecrire/inc_auteur_infos.php -text ecrire/inc_auteur_infos.php -text
ecrire/inc_auteurs_edit.php -text ecrire/inc_auteurs_edit.php -text
ecrire/inc_barre.php3 -text ecrire/inc_barre.php3 -text
......
...@@ -10,338 +10,7 @@ ...@@ -10,338 +10,7 @@
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. * * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
\***************************************************************************/ \***************************************************************************/
include ("inc.php3"); include ("inc.php3");
include_ecrire("inc_presentation.php3"); $var_f = include_fonction(basename($SCRIPT_NAME, _EXTENSION_PHP));
include_ecrire("inc_texte.php3"); $var_f($changer_config);
include_ecrire("inc_urls.php3");
include_ecrire("inc_rubriques.php3");
// checkbox avec imgage
function http_label_img($statut, $etat, $var, $img, $texte) {
return "<label for='$statut'>".
boutonne('checkbox',
$var . '[]',
$statut,
(($etat !== false) ? ' checked="checked"' : '') .
"id='$statut'") .
"&nbsp;" .
http_img_pack($img, $texte, "width='8' height='9' border='0'", $texte) .
" " .
$texte .
"</label><br />";
}
if (count($aff_art) > 0) $aff_art = join(',', $aff_art);
else $aff_art = 'prop,publie';
$statut_art = "'".join("','", explode(",", $aff_art))."'";
debut_page(_T('titre_page_articles_tous'), "asuivre", "tout-site");
debut_gauche();
// Recuperer la direction globale de la langue
$direction_generale = $spip_dir_lang;
// Recuperer toutes les rubriques
$query = "SELECT id_rubrique, titre, id_parent FROM spip_rubriques ORDER BY 0+titre,titre";
$result = spip_query($query);
while ($row = spip_fetch_array($result)) {
$id_rubrique = $row['id_rubrique'];
$titre = typo($row['titre']);
$id_parent = $row['id_parent'];
$les_rubriques[] = "rubrique$id_rubrique";
$nom_block = "rubrique$id_rubrique";
if (!$numero_block["$nom_block"] > 0){
$compteur_block++;
$numero_block["$nom_block"] = $compteur_block;
if (!$first_couche) $first_couche = $compteur_block;
$last_couche = $compteur_block;
}
if ($id_parent == '0') {
$rubrique[$id_rubrique] = "$titre";
}
else {
$rubrique[$id_rubrique] = "$titre";
}
$enfant[$id_parent][] = $id_rubrique;
}
$query = "SELECT DISTINCT id_rubrique FROM spip_articles";
$result = spip_query($query);
while ($row = spip_fetch_array($result)) {
$id_rubrique = $row['id_rubrique'];
$rubriques_actives[$id_rubrique] = $id_rubrique;
}
// Recuperer tous les articles
if (is_array($sel_lang)) {
while (list(,$l) = each($sel_lang))
$sel[$l] = $l;
$sel_lang = $sel;
}
$sel_lang[$spip_lang] = $spip_lang;
if ($connect_statut == "0minirezo") $query = "SELECT articles.id_article, articles.titre, articles.statut, articles.id_rubrique, articles.lang, articles.id_trad, articles.date_modif FROM spip_articles AS articles ORDER BY date DESC";
else $query = "SELECT articles.id_article, articles.titre, articles.statut, articles.id_rubrique, articles.lang, articles.id_trad, articles.date_modif FROM spip_articles AS articles, spip_auteurs_articles AS lien WHERE (articles.statut = 'publie' OR articles.statut = 'prop' OR (articles.statut = 'prepa' AND articles.id_article = lien.id_article AND lien.id_auteur = $connect_id_auteur)) GROUP BY id_article ORDER BY articles.date DESC";
//$query = "SELECT id_rubrique, id_article, titre, statut FROM spip_articles WHERE statut IN ($statut_art) ORDER BY titre";
$result = spip_query($query);
while($row = spip_fetch_array($result)) {
$id_rubrique=$row['id_rubrique'];
$id_article = $row['id_article'];
$titre = typo($row['titre']);
$statut = $row['statut'];
$lang = $row['lang'];
$id_trad = $row['id_trad'];
$date_modif = $row['date_modif'];
$aff_statut["$statut"] = true;
$aff_lang["$lang"] = true;
$text_article[$id_article]["titre"] = "$titre";
$text_article[$id_article]["statut"] = $statut;
$text_article[$id_article]["lang"] = $lang;
$text_article[$id_article]["id_trad"] = $id_trad;
$text_article[$id_article]["date_modif"] = $date_modif;
$GLOBALS['langues_utilisees'][$lang] = true;
$langues = explode(',', lire_meta('langues_multilingue'));
if ((lire_meta('multi_rubriques') == 'oui' OR lire_meta('multi_articles') == 'oui') AND lire_meta('gerer_trad') == 'oui') {
if (count($langues) > 1) {
while (list(, $l) = each ($langues)) {
if ($sel_lang[$l]) $text_article[$id_article]["trad"]["$l"] = "<span class='creer'>$l</span>";
}
}
}
if ($id_trad == $id_article OR $id_trad == 0) {
$text_article[$id_article]["trad"]["$lang"] = "<span class='lang_base'$direction_generale>$lang</span>";
}
if (ereg("'$statut'","$statut_art")) {
$article[$id_rubrique][] = $id_article;
}
}
$tmp = $text_article;
if ($tmp) {
for (reset($tmp); $id_article = key($tmp); next($tmp)) {
$id_trad = $tmp[$id_article]["id_trad"];
$date = $tmp[$id_article]['date'];
$date_modif = $tmp[$id_article]['date_modif'];
$lang = $tmp[$id_article]['lang'];
if ($id_trad > 0 AND $id_trad != $id_article AND $sel_lang[$lang]) {
if ($text_article[$id_trad]["date_modif"] < $text_article[$id_article]["date_modif"]) {
$text_article[$id_trad]["trad"]["$lang"] = "<a class='foncee' href='articles.php3?id_article=$id_article'>$lang</a>";
} else {
$text_article[$id_trad]["trad"]["$lang"] = "<a class='claire' href='articles.php3?id_article=$id_article'>$lang</a>";
}
}
}
}
echo "<form action='articles_tous.php3' method='get'>";
echo "<input type='hidden' name='aff_art[]' value='x'>";
debut_boite_info();
echo "<B>"._T('titre_cadre_afficher_article')."&nbsp;:</B><BR>";
if ($aff_statut['prepa'])
echo http_label_img('prepa',
strpos($aff_art, 'prepa'),
'aff_art',
'puce-blanche-breve.gif',
_T('texte_statut_en_cours_redaction'));
if ($aff_statut['prop'])
echo http_label_img('prop',
strpos($aff_art, 'prop'),
'aff_art',
'puce-orange-breve.gif',
_T('texte_statut_attente_validation'));
if ($aff_statut['publie'])
echo http_label_img('publie',
strpos($aff_art, 'publie'),
'aff_art',
'puce-verte-breve.gif',
_T('texte_statut_publies'));
if ($aff_statut['refuse'])
echo http_label_img('refuse',
strpos($aff_art, 'refuse'),
'aff_art',
'puce-rouge-breve.gif',
_T('texte_statut_refuses'));
if ($aff_statut['poubelle'])
echo http_label_img('poubelle',
strpos($aff_art, 'poubelle'),
'aff_art',
'puce-poubelle-breve.gif',
_T('texte_statut_poubelle'));
echo "<div align='$spip_lang_right'><INPUT TYPE='submit' NAME='Changer' CLASS='fondo' VALUE='"._T('bouton_changer')."'></div>";
// GERER LE MULTILINGUISME
if ((lire_meta('multi_rubriques') == 'oui' OR lire_meta('multi_articles') == 'oui') AND lire_meta('gerer_trad') == 'oui') {
// bloc legende
$lf = lire_meta('langue_site');
echo "<hr /><div class='verdana2'>";
echo _T('info_tout_site6');
echo "<div><span class='lang_base'>$lf</span> ". _T('info_tout_site5') ." </div>";
echo "<div><span class='creer'>$lf</span> ". _T('info_tout_site2') ." </div>";
echo "<div><a class='claire'>$lf</a> ". _T('info_tout_site3'). " </div>";
echo "<div><a class='foncee'>$lf</a> ". _T('info_tout_site4'). " </div>";
echo "</div>\n";
// bloc choix de langue
$langues = explode(',', lire_meta('langues_multilingue'));
if (count($langues) > 1) {
sort($langues);
echo "<br /><div class='verdana2'><b>"._T('titre_cadre_afficher_traductions')."</b><br />";
echo "<SELECT STYLE='width:100%' NAME='sel_lang[]' size='".count($langues)."' ORDERED MULTIPLE>";
while (list(, $l) = each ($langues)) {
if ($sel_lang[$l])
echo "<option value='$l' selected>".traduire_nom_langue($l)."</option>\n";
else
echo "<option value='$l'>".traduire_nom_langue($l)."</option>\n";
}
echo "</select></div>\n";
echo "<div align='$spip_lang_right'><INPUT TYPE='submit' NAME='Changer' CLASS='fondo' VALUE='"._T('bouton_changer')."'></div>";
}
}
fin_boite_info();
echo "</form>";
debut_droite();
function afficher_rubriques_filles($id_parent) {
global $rubrique, $enfant, $article, $text_article;
global $spip_lang_left, $spip_lang_right, $spip_lang, $direction_generale;
global $couleur_claire;
global $decal;
$decal = $decal + 1;
$droite = 500 - (10 * $decal);
if ($enfant[$id_parent]) {
while (list(,$id_rubrique) = each($enfant[$id_parent]) ) {
if ($id_parent == 0) {
$icone = "secteur-24.gif";
$bgcolor = " background-color: $couleur_claire;";
}
else {
$icone = "rubrique-24.gif";
$bgcolor = "";
}
echo "<div style='padding-top: 5px; padding-bottom: 5px; padding-$spip_lang_left: 28px; background: url(" . _DIR_IMG_PACK . "$icone) $spip_lang_left center no-repeat;$bgcolor'>";
if ($enfant[$id_rubrique] OR $article[$id_rubrique]) echo bouton_block_invisible("rubrique$id_rubrique");
echo "<b class='verdana2'><a href='naviguer.php3?id_rubrique=$id_rubrique'>";
echo $rubrique[$id_rubrique];
echo "</b></a></div>\n";
if ($enfant[$id_rubrique] OR $article[$id_rubrique]) {
echo debut_block_invisible("rubrique$id_rubrique");
echo "<div class='plan-rubrique'>";
if ($article[$id_rubrique]) {
echo "<div class='plan-articles'>";
while(list(,$zarticle) = each($article[$id_rubrique]) ) {
$zelang = $text_article[$zarticle]["lang"];
$text_article[$zarticle]["trad"]["$zelang"] = "";
if (count($text_article[$zarticle]["trad"]) > 0) {
ksort($text_article[$zarticle]["trad"]);
$traductions = join ($text_article[$zarticle]["trad"], "");
} else {
$traductions = "";
}
if ($text_article[$zarticle]["id_trad"] == 0 OR $text_article[$zarticle]["id_trad"] == $zarticle) {
//echo "<div style='position: relative;'$direction_generale>";
if (strlen($traductions)>0) echo "<div class='trad_float'>$traductions</div>";
echo "<a class='".$text_article[$zarticle]["statut"]."' href='articles.php3?id_article=$zarticle'>";
if ((lire_meta('multi_rubriques') == 'oui' OR lire_meta('multi_articles') == 'oui') AND lire_meta('gerer_trad') == 'oui') echo "<span class='lang_base'$direction_generale>".$text_article[$zarticle]["lang"]."</span> ";
echo "<span>".$text_article[$zarticle]["titre"]."</span></a>";
//echo "</div>\n";
}
}
echo "</div>";
}
afficher_rubriques_filles($id_rubrique);
echo "</div>";
echo fin_block();
}
if ($id_parent == 0) echo "<div>&nbsp;</div>";
}
}
$decal = $decal-1;
}
$javasc_ouvrir = "manipuler_couches('ouvrir','$spip_lang_rtl',$first_couche,$last_couche, '" . _DIR_IMG_PACK . "')";
$javasc_fermer = "manipuler_couches('fermer','$spip_lang_rtl',$first_couche,$last_couche, '" . _DIR_IMG_PACK . "')";
// Demarrer l'affichage
if ($les_rubriques AND $browser_layer) {
$les_rubriques = join($les_rubriques,",");
echo "<div>&nbsp;</div>";
echo "<b class='verdana3'>";
echo "<a href=\"javascript:$javasc_ouvrir\">";
echo _T('lien_tout_deplier');
echo "</a>";
echo "</b>";
echo " | ";
echo "<b class='verdana3'>";
echo "<a href=\"javascript:$javasc_fermer\">";
echo _T('lien_tout_replier');
echo "</a>";
echo "</b>";
echo "<div>&nbsp;</div>";
}
afficher_rubriques_filles(0);
fin_page();
?> ?>
<?php
/***************************************************************************\
* SPIP, Systeme de publication pour l'internet *
* *
* Copyright (c) 2001-2005 *
* Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
* *
* Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
\***************************************************************************/
include_ecrire("inc_presentation.php3");
include_ecrire("inc_texte.php3");
include_ecrire("inc_urls.php3");
include_ecrire("inc_rubriques.php3");
function articles_tous_dist()
{
global $aff_art, $aff_statut, $sel_lang,
$article, $enfant, $text_article, $first_couche, $last_couche;
global $connect_id_auteur, $connect_statut, $spip_dir_lang, $spip_lang, $browser_layer;
if (!$aff_art) $aff_art = array('prop','publie');
arbo_articles_tous();
debut_page(_T('titre_page_articles_tous'), "asuivre", "tout-site");
debut_gauche();
$sel_lang[$spip_lang] = $spip_lang;
if ($connect_statut == "0minirezo") $query = "SELECT articles.id_article, articles.titre, articles.statut, articles.id_rubrique, articles.lang, articles.id_trad, articles.date_modif FROM spip_articles AS articles ORDER BY date DESC";
else $query = "SELECT articles.id_article, articles.titre, articles.statut, articles.id_rubrique, articles.lang, articles.id_trad, articles.date_modif FROM spip_articles AS articles, spip_auteurs_articles AS lien WHERE (articles.statut = 'publie' OR articles.statut = 'prop' OR (articles.statut = 'prepa' AND articles.id_article = lien.id_article AND lien.id_auteur = $connect_id_auteur)) GROUP BY id_article ORDER BY articles.date DESC";
$result = spip_query($query);
while($row = spip_fetch_array($result)) {
$id_rubrique=$row['id_rubrique'];
$id_article = $row['id_article'];
$titre = typo($row['titre']);
$statut = $row['statut'];
$lang = $row['lang'];
$id_trad = $row['id_trad'];
$date_modif = $row['date_modif'];
$aff_statut["$statut"] = true;
$text_article[$id_article]["titre"] = $titre;
$text_article[$id_article]["statut"] = $statut;
$text_article[$id_article]["lang"] = $lang;
$text_article[$id_article]["id_trad"] = $id_trad;
$text_article[$id_article]["date_modif"] = $date_modif;
$GLOBALS['langues_utilisees'][$lang] = true;
$langues = explode(',', lire_meta('langues_multilingue'));
if ((lire_meta('multi_rubriques') == 'oui' OR lire_meta('multi_articles') == 'oui') AND lire_meta('gerer_trad') == 'oui') {
if (count($langues) > 1) {
while (list(, $l) = each ($langues)) {
if (in_array($l, $sel_lang)) $text_article[$id_article]["trad"]["$l"] = "<span class='creer'>$l</span>";
}
}
}
if ($id_trad == $id_article OR $id_trad == 0) {
$text_article[$id_article]["trad"]["$lang"] = "<span class='lang_base'$spip_dir_lang>$lang</span>";
}
if (in_array($statut, $aff_art))
$article[$id_rubrique][] = $id_article;
}
if ($text_article)
foreach ($text_article as $id_article => $v) {
$id_trad = $v["id_trad"];
$lang = $v['lang'];
if ($id_trad > 0 AND $id_trad != $id_article AND in_array($lang, $sel_lang)) {
if ($text_article[$id_trad]["date_modif"] < $v["date_modif"])
$c = 'foncee';
else
$c = 'claire';
$text_article[$id_trad]["trad"]["$lang"] =
"<a class='$c' href='articles.php3?id_article=$id_article'>$lang</a>";
}
}
formulaire_affiche_tous($aff_art, $aff_statut, $sel_lang);
debut_droite();
if ($enfant AND $browser_layer) couche_formulaire_tous($first_couche, $last_couche);
afficher_rubriques_filles(0);
fin_page();
}
// Recuperer toutes les rubriques dans $enfant et leur niveau dans numero_block
function arbo_articles_tous()
{
global $enfant, $first_couche, $last_couche, $numero_block, $compteur_block;
$enfant = array();
$query = "SELECT id_rubrique, titre, id_parent FROM spip_rubriques ORDER BY 0+titre,titre";
$result = spip_query($query);
while ($row = spip_fetch_array($result)) {
$id_rubrique = $row['id_rubrique'];
$id_parent = $row['id_parent'];
$enfant[$id_parent][$id_rubrique] = typo($row['titre']);
$nom_block = "rubrique$id_rubrique";
if (!$numero_block[$nom_block] > 0){
$compteur_block++;
$numero_block[$nom_block] = $compteur_block;
if (!$first_couche) $first_couche = $compteur_block;
$last_couche = $compteur_block;
}
}
}
// checkbox avec imgage
function http_label_img($statut, $etat, $var, $img, $texte) {
return "<label for='$statut'>".
boutonne('checkbox',
$var . '[]',
$statut,
(($etat !== false) ? ' checked="checked"' : '') .
"id='$statut'") .
"&nbsp;" .
http_img_pack($img, $texte, "width='8' height='9' border='0'", $texte) .
" " .
$texte .
"</label><br />";
}
function formulaire_affiche_tous($aff_art, $aff_statut,$sel_lang)
{
global $spip_lang_right;
echo "<form action='articles_tous.php3' method='get'>";
echo "<input type='hidden' name='aff_art[]' value='x'>";
debut_boite_info();
echo "<B>"._T('titre_cadre_afficher_article')."&nbsp;:</B><BR>";
if ($aff_statut['prepa'])
echo http_label_img('prepa',
in_array('prepa', $aff_art),
'aff_art',
'puce-blanche-breve.gif',
_T('texte_statut_en_cours_redaction'));
if ($aff_statut['prop'])
echo http_label_img('prop',
in_array('prop', $aff_art),
'aff_art',
'puce-orange-breve.gif',
_T('texte_statut_attente_validation'));
if ($aff_statut['publie'])
echo http_label_img('publie',
in_array('publie', $aff_art),
'aff_art',
'puce-verte-breve.gif',
_T('texte_statut_publies'));
if ($aff_statut['refuse'])
echo http_label_img('refuse',
in_array('refuse', $aff_art),
'aff_art',
'puce-rouge-breve.gif',
_T('texte_statut_refuses'));
if ($aff_statut['poubelle'])
echo http_label_img('poubelle',
in_array('poubelle', $aff_art),
'aff_art',
'puce-poubelle-breve.gif',
_T('texte_statut_poubelle'));
echo "<div align='$spip_lang_right'><INPUT TYPE='submit' NAME='Changer' CLASS='fondo' VALUE='"._T('bouton_changer')."'></div>";
// GERER LE MULTILINGUISME
if ((lire_meta('multi_rubriques') == 'oui' OR lire_meta('multi_articles') == 'oui') AND lire_meta('gerer_trad') == 'oui') {
// bloc legende
$lf = lire_meta('langue_site');
echo "<hr /><div class='verdana2'>";
echo _T('info_tout_site6');
echo "<div><span class='lang_base'>$lf</span> ". _T('info_tout_site5') ." </div>";
echo "<div><span class='creer'>$lf</span> ". _T('info_tout_site2') ." </div>";
echo "<div><a class='claire'>$lf</a> ". _T('info_tout_site3'). " </div>";
echo "<div><a class='foncee'>$lf</a> ". _T('info_tout_site4'). " </div>";
echo "</div>\n";
// bloc choix de langue
$langues = explode(',', lire_meta('langues_multilingue'));
if (count($langues) > 1) {
sort($langues);
echo "<br /><div class='verdana2'><b>"._T('titre_cadre_afficher_traductions')."</b><br />";
echo "<SELECT STYLE='width:100%' NAME='sel_lang[]' size='".count($langues)."' multiple='multiple>";
while (list(, $l) = each ($langues)) {
echo "<option value='$l'",
(in_array($l,$sel_lang) ? " selected='selected'" : ""),
">",
traduire_nom_langue($l),
"</option>\n";
}
echo "</select></div>\n";
echo "<div align='$spip_lang_right'><INPUT TYPE='submit' NAME='Changer' CLASS='fondo' VALUE='"._T('bouton_changer')."'></div>";
}
}
fin_boite_info();
echo "</form>";
}
function couche_formulaire_tous($first_couche, $last_couche)
{
global $spip_lang_rtl;
echo "<div>&nbsp;</div>";
echo "<b class='verdana3'>";
echo "<a href=\"javascript:";
echo "manipuler_couches('ouvrir','$spip_lang_rtl',$first_couche,$last_couche, '" . _DIR_IMG_PACK . "')\">";
echo _T('lien_tout_deplier');
echo "</a>";
echo "</b>";
echo " | ";
echo "<b class='verdana3'>";
echo "<a href=\"javascript:";
echo "manipuler_couches('fermer','$spip_lang_rtl',$first_couche,$last_couche, '" . _DIR_IMG_PACK . "')\">";
echo _T('lien_tout_replier');
echo "</a>";
echo "</b>";
echo "<div>&nbsp;</div>";
}
function afficher_rubriques_filles($id_parent) {
global $enfant, $article, $text_article;
global $spip_lang_left, $spip_lang_right, $spip_lang, $direction_generale;
global $couleur_claire;
global $decal;
$decal = $decal + 1;
$droite = 500 - (10 * $decal);
if ($enfant[$id_parent]) {
while (list($id_rubrique, $titre) = each($enfant[$id_parent]) ) {
if ($id_parent == 0) {
$icone = "secteur-24.gif";
$bgcolor = " background-color: $couleur_claire;";
}
else {
$icone = "rubrique-24.gif";
$bgcolor = "";
}
echo "<div style='padding-top: 5px; padding-bottom: 5px; padding-$spip_lang_left: 28px; background: url(" . _DIR_IMG_PACK . "$icone) $spip_lang_left center no-repeat;$bgcolor'>";
if ($enfant[$id_rubrique] OR $article[$id_rubrique]) echo bouton_block_invisible("rubrique$id_rubrique");
echo "<b class='verdana2'><a href='naviguer.php3?id_rubrique=$id_rubrique'>";
echo $titre;
echo "</b></a></div>\n";
if ($enfant[$id_rubrique] OR $article[$id_rubrique]) {
echo debut_block_invisible("rubrique$id_rubrique");
echo "<div class='plan-rubrique'>";
if ($article[$id_rubrique]) {
echo "<div class='plan-articles'>";
while(list(,$zarticle) = each($article[$id_rubrique]) ) {
$zelang = $text_article[$zarticle]["lang"];
$text_article[$zarticle]["trad"]["$zelang"] = "";
if (count($text_article[$zarticle]["trad"]) > 0) {
ksort($text_article[$zarticle]["trad"]);
$traductions = join ($text_article[$zarticle]["trad"], "");
} else {
$traductions = "";
}
if ($text_article[$zarticle]["id_trad"] == 0 OR $text_article[$zarticle]["id_trad"] == $zarticle) {
//echo "<div style='position: relative;'$direction_generale>";
if (strlen($traductions)>0) echo "<div class='trad_float'>$traductions</div>";
echo "<a class='".$text_article[$zarticle]["statut"]."' href='articles.php3?id_article=$zarticle'>";
if ((lire_meta('multi_rubriques') == 'oui' OR lire_meta('multi_articles') == 'oui') AND lire_meta('gerer_trad') == 'oui') echo "<span class='lang_base'$direction_generale>".$text_article[$zarticle]["lang"]."</span> ";
echo "<span>".$text_article[$zarticle]["titre"]."</span></a>";
//echo "</div>\n";
}
}
echo "</div>";
}
afficher_rubriques_filles($id_rubrique);
echo "</div>";
echo fin_block();
}
if ($id_parent == 0) echo "<div>&nbsp;</div>";
}
}
$decal = $decal-1;
}
?>
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter