21,7 → 21,7 |
// | along with Foobar; if not, write to the Free Software | |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
// +------------------------------------------------------------------------------------------------------+ |
// CVS : $Id: eflore_chorologie.php,v 1.13 2006-05-31 16:00:13 jp_milcent Exp $ |
// CVS : $Id: eflore_chorologie.php,v 1.14 2007-07-17 17:12:46 jp_milcent Exp $ |
/** |
* Affichage des listes de noms de plantes par zones géographiques. |
* |
34,7 → 34,7 |
//Autres auteurs : |
*@author Aucun |
*@copyright Tela-Botanica 2000-2004 |
*@version $Revision: 1.13 $ $Date: 2006-05-31 16:00:13 $ |
*@version $Revision: 1.14 $ $Date: 2007-07-17 17:12:46 $ |
// +------------------------------------------------------------------------------------------------------+ |
*/ |
|
97,16 → 97,23 |
// Initialisation |
$sortie = ''; |
|
global $choro_dep_TABLEAU_CHOIX_LIGNE_PAGE; |
global $image_x; |
global $image_y; |
global $historique_cartes; |
global $lettre; |
global $departement; |
global $nombre_taxon; |
global $liste_zone_carte; |
|
|
$image_x = null; |
if (isset($_POST['image_x'])) $image_x = $_POST['image_x']; |
$image_y = null; |
if (isset($_POST['image_y'])) $image_y = $_POST['image_y']; |
$historique_cartes = null; |
if (isset($_POST['historique_cartes'])) $historique_cartes = $_POST['historique_cartes']; |
$liste_zone_carte = null; |
if (isset($_POST['liste_zone_carte'])) $liste_zone_carte = $_POST['liste_zone_carte']; |
$lettre = null; |
if (isset($_GET['lettre'])) $lettre = $_GET['lettre']; |
$GLOBALS['lettre'] = $lettre; |
$departement = null; |
if (isset($_GET['departement'])) $departement = $_GET['departement']; |
$GLOBALS['departement'] = $departement; |
$nombre_taxon = null; |
if (isset($_GET['nombre_taxon'])) $nombre_taxon = $_GET['nombre_taxon']; |
$GLOBALS['nombre_taxon'] = $nombre_taxon; |
// +--------------------------------------------------------------------------------------------------+ |
// PARAMETRAGE des TABLEAUX de la FONCTION rechercheAlphabet() |
|
164,7 → 171,7 |
$fragmenteur['numero_ligne_depart'] = NUMERO_LIGNE_DEPART; |
$fragmenteur['afficher_titre'] = AFFICHER_TITRE; |
$fragmenteur['titre'] = TITRE_FRAGMENTEUR; |
$fragmenteur['tableau_choix_ligne_page'] = $choro_dep_TABLEAU_CHOIX_LIGNE_PAGE; |
$fragmenteur['tableau_choix_ligne_page'] = $GLOBALS['choro_dep_TABLEAU_CHOIX_LIGNE_PAGE']; |
$fragmenteur['modele_info'] = MODELE_INFO; |
$fragmenteur['classe_css_titre'] = CLASSE_CSS_TITRE; |
$fragmenteur['classe_css_fragmenteur'] = CLASSE_CSS_FRAGMENTEUR; |
430,8 → 437,8 |
$format_intro->setSize(12); |
|
$worksheet->mergeCells($i++, 0, $i, 8); |
if ($GLOBALS['lettre'] != 'tous') { |
$titre = 'Export des taxons commençant par la lettre '.$GLOBALS['lettre'].' présents dans le département '.$tableau_infoDep['NUMERO']; |
if ($lettre != 'tous') { |
$titre = 'Export des taxons commençant par la lettre '.$lettre.' présents dans le département '.$tableau_infoDep['NUMERO']; |
} else { |
$titre = 'Export des taxons présents dans le département '.$tableau_infoDep['NUMERO']; |
} |
630,6 → 637,9 |
/* +--Fin du code ----------------------------------------------------------------------------------------+ |
* |
* $Log: not supported by cvs2svn $ |
* Revision 1.13 2006-05-31 16:00:13 jp_milcent |
* Gestion de l'url pour le lien vers la licence du fichier d'export. |
* |
* Revision 1.12 2006/05/31 15:14:51 jp_milcent |
* Amélioration de la gestion de l'export xls (suite). |
* |