. . .
Fichier source

historique.php

[ 0] <?php
[ 1]
require_once "include/global.php";
[ 2]require_once 
"include/preferences.php";
[ 3]require_once 
"include/menubar.php";
[ 4]require_once 
"include/xml_historique.php";
[ 5]
[ 6]
$initialiser_preferences();
[ 7]
$entete_html();
[ 8]
afficher_top_bar();
[ 9]
[10]
debut_mosaique_horizontale();
[11]
afficher_standard_left_bar();
[12]
fin_mosaique_gauche();
[13]
[14]
///////////////////////////
[15]// Begin of the main Bar //
[16]///////////////////////////
[17]
[18]
$parser = new xml_historique("historique.xml");
[19]
$parser->analyser();
[20]
[21]
fin_mosaique_horizontale();
[22]
afficher_foot_bar();
[23]
$ferme_html();
[24]
?>
[25]

. . .