\n\n";
// Description du module
echo "
";
echo "Ce module permet de generer et de telecharger toutes les editions pdf ";
echo "permettant d'obtenir des etats recapitulant tous les resultats ou la ";
echo "participation d'une election, avec ou sans pourcentage, detail par ";
echo "canton, ...";
echo "
\n";
// Définition des éditions disponibles
$fields = array(
array(
'titre' => "Participation",
'description' => "Etat de la participation par bureau par tranche horaire avec totaux et pourcentage",
'link' => "pdf_participation.php",
'election' => "main",
),
array(
'titre' => "Standard",
'description' => "Etat resultat par bureau avec totaux (avec colonne \"id canton\")",
'link' => "pdfetat_resultat.php",
'election' => "all",
),
array(
'titre' => "Prefecture",
'description' => "Etat resultat par bureau (sans le \"nom de bureau\") avec totaux (avec colonne \"vote sur emargement\")",
'link' => "pdfetat_prefecture.php",
'election' => "all",
),
array(
'titre' => "Résultats par canton - Option 1",
'description' => "Etat resultat par bureau regroupe par canton avec totaux et pourcentage (avec colonne \"vote sur emargement\")",
'link' => "pdf_resultats_cantons.php",
'get' => array(
"idx" => "£election",
"option" => "option1"
),
'election' => "all",
),
array(
'titre' => "Résultats par canton - Option 2",
'description' => "Etat resultat par bureau regroupe par canton avec totaux (avec colonne \"vote sur emargement\" et \"procuration\")",
'link' => "pdf_resultats_cantons.php",
'get' => array(
"idx" => "£election",
"option" => "option2"
),
'election' => "all",
),
array(
'titre' => "Résultats par canton - Option 3",
'description' => "Etat resultat par bureau regroupe par canton avec totaux et pourcentage (avec colonne \"vote sur emargement\" et \"procuration\")",
'link' => "pdf_resultats_cantons.php",
'get' => array(
"idx" => "£election",
"option" => "option3"
),
'election' => "all",
),
array(
'titre' => "Proclamation des résultats définitifs",
'description' => "Etat resultat sur la commune",
'link' => "pdf_proclamation_resultats_definitifs.php",
'get' => array(
"election" => "£election",
),
'election' => "main",
),
array(
'titre' => "Proclamation des résultats définitifs avec répartition des sièges",
'description' => "Etat resultat sur la commune avec répartition des sièges",
'link' => "pdf_proclamation_resultats_definitifs.php",
'get' => array(
"election" => "£election",
"specific" => "siege",
),
'election' => "main",
),
array(
'titre' => "Proclamation des résultats définitifs par canton",
'description' => "Etat resultat par canton (Une page par canton)",
'link' => "pdf_proclamation_resultats_definitifs.php",
'get' => array(
"election" => "£election",
"type" => "canton"
),
'election' => "main",
),
array(
'titre' => "Proclamation des résultats définitifs par bureau",
'description' => "Etat resultat par bureau (Une page par bureau)",
'link' => "pdf_proclamation_resultats_definitifs.php",
'get' => array(
"election" => "£election",
"type" => "bureau"
),
'election' => "main",
),
array(
'titre' => "Résultats globaux - Option 1",
'description' => "Etat resultat par bureau avec total en pourcentage (avec colonne \"vote sur emargement\" et \"procuration\")",
'link' => "pdf_resultats_globaux.php",
'get' => array(
"idx" => "£election",
"option" => "option1"
),
'election' => "all",
),
array(
'titre' => "Résultats globaux - Option 2",
'description' => "Etat resultat par bureau avec total en pourcentage",
'link' => "pdf_resultats_globaux.php",
'get' => array(
"idx" => "£election",
"option" => "option2"
),
'election' => "all",
),
);
// Récupération des élections en cours pour lesquelles les éditions sont disponibles
$sql = "select * from election where election_cloture=0 order by election_libelle";
$res = $f->db->query ($sql);
$f->databaseError ($res);
$tab = array ();
while ($row =& $res -> fetchRow (DB_FETCHMODE_ASSOC)) {
array_push ($tab, $row);
}
$res->free ();
// Affichage du listing des éditions
echo "\n";
// Fermeture du conteneur spécifique de la page
echo "\n\t\n";
?>