Bonjour
Sur mon site Joomla3 j'utilise le widget d'Herodote.net dans un module personnalisé. Je n'arrive pas à l'installer sur Joomla4. J'ai autorisé script, iframes et applet dans Tiny Editor. Mais ça ne fonctionne pas. Je joins le code ci-dessous avant personnalisation. Merci pour votre aide.
Sur mon site Joomla3 j'utilise le widget d'Herodote.net dans un module personnalisé. Je n'arrive pas à l'installer sur Joomla4. J'ai autorisé script, iframes et applet dans Tiny Editor. Mais ça ne fonctionne pas. Je joins le code ci-dessous avant personnalisation. Merci pour votre aide.
Code PHP:
<!-- DEBUT EPHEMERIDE HISTOIRE DU JOUR -->
<!-- Début coller entre les balises head de votre programme source -->
<style type="text/css">
/* Div sommaire */
.outil_titre
{
background-color: #B3AD95;
color: #A02C1F;
font-family: Arial,'Courier New';
font-size: 14px;
font-weight: 900;
height: 14px;
line-height: 14px;
margin: 0;
padding: 7px 5%;
text-align: left;
width: 186px !important;
}
/* Lien Sommaire */
.lien_titre {
color: #A02C1F;
font-family: Arial,'Courier New';
font-weight: 900;
line-height: 14px;
text-decoration: none;
}
/* Div des infos */
.outil {
-moz-border-bottom-colors: none;
-moz-border-image: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #E8DFB8;
border-color: -moz-use-text-color #B3AD95 #B3AD95;
border-style: none solid solid;
border-width: 0 1px 1px;
color: #660000;
font-family: Arial;
font-size: 12px;
margin: 0 0 15px;
overflow: auto;
padding: 10px 5%;
text-align: center;
width: 184px !important;
}
/* Titre de chaque pavé evenements */
.histtitre {
color: #660000;
font-family: Georgia,"Times New Roman, Times";
font-size: 14px;
font-weight: bold;
padding-top: 5px;
text-align: center;
}
/* Texte de chaque pavé evenements */
.histtexte {
color: #660000;
font-family: Arial;
font-size: 10px;
padding-left: 5px;
padding-right: 5px;
text-align: center;
text-indent: 0;
}
.histlien {
color: #565656;
font-family: Arial;
font-size: 13px;
font-weight: bold;
text-align: left;
text-decoration: none;
}
</style>
<!-- Fin coller entre les balises head de votre programme source -->
Code PHP:
<!-- Début coller à l'endoit ou vous souhaitez afficher l'éphéméride -->
<script type="text/javascript">
/* Mettre à zéro ce qui ne doit pas être affiché */
var evenement= 1;
var naissance= 1;
var deces= 1;
var saint= 1;
/* NE RIEN MODIFIER CI-DESSOUS ! */
var now= new Date();
var mois = (now.getMonth() + 1).toString();
var jour = now.getDate().toString();
if (mois.length == 1) { mois = '0'+ mois.toString(); }
if (jour.length == 1) { jour = '0'+ jour.toString(); }
var maDate = mois.toString() + jour.toString();
document.write("<scr"+"ipt src='https://www.herodote.net/_webService/ws_ephemeride.php?jour="+maDate+"&type_appel="+eve nement.toString()+naissance.toString()+deces.toStr ing()+saint.toString()+"'></scr"+"ipt>");
</script>
<!-- Fin coller à l'endoit ou vous souhaitez afficher l'éphéméride -->
<!-- FIN EPHEMERIDE HISTOIRE DU JOUR -->
Commentaire