2 |
jp_milcent |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | Lesser General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
19 |
// | License along with this library; if not, write to the Free Software |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
30 |
mathias |
22 |
// CVS : $Id$
|
2 |
jp_milcent |
23 |
/**
|
|
|
24 |
* Appli bb_consultation : gestion des informations avancées "livre" de Biblio Bota
|
|
|
25 |
*
|
|
|
26 |
* Ce fichier permet d'afficher les informations concernant les "livres" d'un organisme lié à la botanique.
|
|
|
27 |
*
|
|
|
28 |
*@package BiblioBota-Consultation
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Jean-Charles GRANGER <tela@vecteur.org>
|
|
|
31 |
//Autres auteurs :
|
|
|
32 |
*@author Jean-Pascal MILCENT <jpm@clapas.org>
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
30 |
mathias |
34 |
*@version $Revision$ $Date$
|
2 |
jp_milcent |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | ENTETE du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
44 |
// | CORPS du PROGRAMME |
|
|
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
46 |
|
|
|
47 |
if ($tableau['pstart']== '') {
|
|
|
48 |
$tableau['pstart'] = 0;
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
// Ligne de proposition d'édition
|
30 |
mathias |
52 |
/* TODO NAVIGBIBLIO
|
2 |
jp_milcent |
53 |
if ($var_biblio['open_proposer_media'] == 1) {
|
|
|
54 |
$sortie .= CreateNavigBiblio('add', 'book', 'Proposer un nouveau livre', $tableau['book'], 1, $tableau);
|
30 |
mathias |
55 |
} else {
|
2 |
jp_milcent |
56 |
$sortie .= ' ';
|
|
|
57 |
}
|
30 |
mathias |
58 |
*/
|
2 |
jp_milcent |
59 |
|
|
|
60 |
// Ligne de titre
|
|
|
61 |
$requete = 'SELECT B_S_NOM '.
|
|
|
62 |
'FROM '.$tbl['str'].' '.
|
|
|
63 |
'WHERE B_S_IDSTR = '.$tableau['book'];
|
|
|
64 |
$resultat = mysql_query($requete) or die(BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
|
|
|
65 |
$num_s = mysql_num_rows($resultat);
|
|
|
66 |
|
|
|
67 |
if ($num_s != 1) {
|
|
|
68 |
$sortie .= '<p class="erreur"><strong>'.'Erreur de requête LIVRE !'.'</strong>'.
|
|
|
69 |
' nombre de résultats (= '.$num_s.') incohérent pour la requête : '.'<br />'.$requete.'</p>';
|
|
|
70 |
} else {
|
|
|
71 |
// Récupération des infos sur la structure
|
|
|
72 |
$ligne = mysql_fetch_object($resultat);
|
|
|
73 |
$la_structure = $ligne->B_S_NOM;
|
|
|
74 |
mysql_free_result($resultat);
|
|
|
75 |
|
|
|
76 |
$tableau['args'] = '&book='.$tableau['book'];
|
|
|
77 |
|
|
|
78 |
// Comptage du nombre de livres
|
|
|
79 |
$requete = 'SELECT COUNT(*) AS COMPTAGE '.
|
|
|
80 |
'FROM '.$tbl['item'].', '.$tbl['media'].' '.
|
|
|
81 |
'WHERE '.$tbl['media'].'.B_M_LKSTR = '.$tableau['book'].' '.
|
|
|
82 |
'AND '.$tbl['item'].'.B_I_TYPPHY = '.$def_livre.' '.
|
|
|
83 |
'AND '.$tbl['item'].'.B_I_IDITEM = '.$tbl['media'].'.B_M_IDMEDIA';
|
|
|
84 |
$resultat = mysql_query($requete) or die(BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
|
|
|
85 |
$ligne = mysql_fetch_object($resultat);
|
|
|
86 |
$num_c = $ligne->COMPTAGE;
|
|
|
87 |
mysql_free_result($resultat);
|
|
|
88 |
|
|
|
89 |
global $def_livre;
|
|
|
90 |
$requete = 'select '.$tbl['item'].'.*, '.$tbl['media'].'.*, GEN_MON_SYMBOLE, B_AS_LIBELLE, GEN_MON_VAL1EURO, '.$tbl['domaine'].'.* '.
|
|
|
91 |
'FROM '.$tbl['item'].', '.$tbl['media'].', '.$tbl['monnaie'].', '.$tbl['saisie'].', '.$tbl['domaine'].', '.$tbl['domaine_lk'].' '.
|
|
|
92 |
'WHERE B_M_LKSTR = '.$tableau['book'].' '.
|
|
|
93 |
'AND B_I_TYPPHY = '.$def_livre.' '.
|
|
|
94 |
'AND B_I_IDITEM = B_M_IDMEDIA '.
|
|
|
95 |
'AND GEN_MON_IDMONNAIE = B_M_LKMONNAIE '.
|
|
|
96 |
'AND B_I_AUTEURSAISIE = B_AS_ID '.
|
|
|
97 |
'AND B_I_IDITEM = B_DL_IDITEM '.
|
|
|
98 |
'AND B_DL_IDDOM = B_D_ID '.
|
|
|
99 |
'ORDER BY B_I_AUTEURS '.
|
|
|
100 |
'LIMIT '.$tableau['pstart'].', '.$var_biblio['how_book'];
|
|
|
101 |
$resultat = mysql_query($requete) or die (BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
|
|
|
102 |
$nb_m = mysql_num_rows($resultat);
|
|
|
103 |
|
|
|
104 |
// Titre de la page
|
|
|
105 |
$sortie .= '<h1>'.$la_structure.' : livres'.'</h1>'."\n";
|
|
|
106 |
|
|
|
107 |
// Récupération d'informations
|
|
|
108 |
if (empty($tableau['step'])) {
|
|
|
109 |
$tableau['step'] = $var_biblio['how_book'];
|
|
|
110 |
}
|
|
|
111 |
if (empty($tableau['how_bloc'])) {
|
|
|
112 |
$tableau['step'] = $var_biblio['how_book'];
|
|
|
113 |
}
|
|
|
114 |
if (empty($tableau['pend'])) {
|
|
|
115 |
$tableau['pend'] = $num_c;
|
|
|
116 |
}
|
|
|
117 |
if (empty($tableau['libelle'])) {
|
|
|
118 |
$tableau['libelle'] = 'livre';
|
|
|
119 |
}
|
|
|
120 |
if (empty($tableau['feminin'])) {
|
|
|
121 |
$tableau['feminin'] = 0;
|
|
|
122 |
}
|
|
|
123 |
|
|
|
124 |
// Affichage du nbre de résultats
|
|
|
125 |
$sortie .= '<p id="frag_nbre_resultat">';
|
|
|
126 |
$sortie .= FRAG_afficherTxtNbreResultat('bbpopup', $tableau, $nb_m, $num_c);
|
|
|
127 |
$sortie .= '</p>'."\n";
|
|
|
128 |
|
|
|
129 |
// Ici on fragmente en pages, pour une navigation plus facile
|
|
|
130 |
$frag = new fragmenteur(' - ', 10, BB_URL_COURANTE_CONSULTATION_AVANCEE);
|
|
|
131 |
$frag_txt = $frag->fragmente($tableau, $num_c);
|
|
|
132 |
if (($frag->nb_pages) > 1) {
|
|
|
133 |
$sortie .= '<p class="frag_navigation">'.$frag_txt.'</p>'."\n";
|
|
|
134 |
}
|
|
|
135 |
|
|
|
136 |
// Affichage des livres
|
|
|
137 |
if ($num_c == 0) {
|
|
|
138 |
$sortie .= '<p class="information">'.'Aucun livre indexé.'.'</p>';
|
|
|
139 |
} else {
|
|
|
140 |
$sortie .= '<ul id="bb_liste_livre">'."\n";
|
|
|
141 |
while ($ligne = mysql_fetch_object($resultat)) {
|
|
|
142 |
$id_a = $ligne->B_I_IDITEM;
|
|
|
143 |
$titre = $ligne->B_I_TITRE;
|
|
|
144 |
$auteurs = $ligne->B_I_AUTEURS;
|
|
|
145 |
$geo = $ligne->B_I_GEO;
|
|
|
146 |
$langue = $ligne->B_I_LANGUE;
|
|
|
147 |
$resum = $ligne->B_I_RESUMCLE;
|
|
|
148 |
$image = $ligne->B_I_IMAGE;
|
|
|
149 |
$saisie = $ligne->B_AS_LIBELLE;
|
|
|
150 |
$comment = $ligne->B_I_COMMENT;
|
|
|
151 |
$date = $ligne->B_M_DATE;
|
|
|
152 |
$prix = $ligne->B_M_PRIX;
|
|
|
153 |
$idmonnaie = $ligne->B_M_LKMONNAIE;
|
|
|
154 |
$monnaie = $ligne->GEN_MON_SYMBOLE;
|
|
|
155 |
$converter = $ligne->GEN_MON_VAL1EURO;
|
|
|
156 |
$volume = $ligne->B_M_VOLUME;
|
|
|
157 |
$edite = $ligne->B_M_EDITE;
|
|
|
158 |
$vendu = $ligne->B_M_VEND;
|
|
|
159 |
$editeur = $ligne->B_M_EDITEUR;
|
|
|
160 |
$collection_book = $ligne->B_M_COLLECTION;
|
|
|
161 |
$numcoll_book = $ligne->B_M_NUMCOLL;
|
|
|
162 |
$get_domaine_id = $ligne->B_D_ID;
|
|
|
163 |
$get_domaine_nom = $ligne->B_D_LABEL;
|
|
|
164 |
|
|
|
165 |
$sortie .= '<li>'."\n";
|
|
|
166 |
|
|
|
167 |
if ($image != '') {
|
|
|
168 |
$sortie .= '<img class="bb_img_livre" src="'.BB_CHEMIN_IMAGES_ILLUSTRATION.$image.'" '.
|
|
|
169 |
'alt="'.'Illustration du livre : '.$titre.'" />';
|
|
|
170 |
}
|
|
|
171 |
|
|
|
172 |
if ($get_domaine_id != 1) {
|
|
|
173 |
$sortie .= '<span class="texte_inactif">'.'['.$get_domaine_nom.']'.'</span>'."\n";
|
|
|
174 |
}
|
|
|
175 |
|
|
|
176 |
if (($auteurs == '') || ($auteurs == 'ANONYME')) {
|
|
|
177 |
$sortie .= 'Inconnu ou Anonyme'.' - ';
|
|
|
178 |
} else {
|
|
|
179 |
$sortie .= $auteurs.' - ';
|
|
|
180 |
}
|
|
|
181 |
|
|
|
182 |
$sortie .= '<strong>'.$titre.'</strong>'.' -'."\n";
|
|
|
183 |
|
|
|
184 |
$sortie .= ' Éditeur : ';
|
|
|
185 |
if ($editeur != '') {
|
|
|
186 |
$sortie .= $editeur;
|
|
|
187 |
} else {
|
|
|
188 |
$sortie .= 'inconnu';
|
|
|
189 |
}
|
|
|
190 |
$sortie .= ' - ';
|
|
|
191 |
if (($collection_book != '') || ($numcoll_book != '')) {
|
|
|
192 |
$sortie .= 'Collection : '.$collection_book.' '.$numcoll_book.' - ';
|
|
|
193 |
}
|
|
|
194 |
|
|
|
195 |
if ($geo != '') {
|
|
|
196 |
$sortie .= 'Départ./Région : '.'<em>'.$geo.'</em>'.' -';
|
|
|
197 |
}
|
|
|
198 |
|
|
|
199 |
if ($date > 0) {
|
|
|
200 |
$sortie .= ' '.DAT_formaterDateYYYYMMJJ($date).', ';
|
|
|
201 |
}
|
|
|
202 |
if ($volume != '') {
|
|
|
203 |
$sortie .= $volume.', ';
|
|
|
204 |
}
|
|
|
205 |
|
|
|
206 |
if ($prix > 0) {
|
|
|
207 |
$sortie .= $prix.' '.$monnaie;
|
|
|
208 |
}
|
|
|
209 |
|
|
|
210 |
if (($def_euro != $idmonnaie) && ($converter > 0)) {
|
|
|
211 |
$sortie .= ' (env. '.round($prix/$converter, 2).' €)';
|
|
|
212 |
}
|
|
|
213 |
|
|
|
214 |
if ($langue != '') {
|
|
|
215 |
$sortie .= ' ('.$langue.')';
|
|
|
216 |
}
|
|
|
217 |
|
|
|
218 |
if (($resum != '') || ($comment != '')) {
|
|
|
219 |
$sortie .= ' - '.'<em>'.$comment;
|
|
|
220 |
if (($resum != '') && ($comment != '')) {
|
|
|
221 |
$sortie .= ' - ';
|
|
|
222 |
}
|
|
|
223 |
$sortie .= $resum.'</em>';
|
|
|
224 |
}
|
|
|
225 |
|
|
|
226 |
if ($vendu == -1) {
|
|
|
227 |
$sortie .= ' - '.'<img class="'.BB_CLASS_IMG_EPUISE.'" src="'.BB_IMG_EPUISE.'" alt="'.'Épuisé'.'" />';
|
|
|
228 |
}
|
|
|
229 |
|
|
|
230 |
if (($edite == 1) || ($vendu == 1)) {
|
|
|
231 |
$sortie .= ' - '.'Organisme ';
|
|
|
232 |
if ($edite == 1) {
|
|
|
233 |
$sortie .= 'éditeur';
|
|
|
234 |
}
|
|
|
235 |
if (($edite == 1) && ($vendu == 1)) {
|
|
|
236 |
$sortie .= ' et ';
|
|
|
237 |
}
|
|
|
238 |
if ($vendu == 1) {
|
|
|
239 |
$sortie .= 'vendeur';
|
|
|
240 |
}
|
|
|
241 |
$sortie .= ' de l\'article';
|
|
|
242 |
}
|
|
|
243 |
|
|
|
244 |
if ($saisie != '') {
|
|
|
245 |
$sortie .= '<span class="texte_inactif">'.' - '.'Saisie : '.$saisie.' - Art. n°'.$id_a.'.'.'</span>';
|
|
|
246 |
}
|
|
|
247 |
|
|
|
248 |
// Là on affiche les Voir Aussi Livres ... si y'en a
|
|
|
249 |
$UnVoirAussi = new VoirAussi($id_a, $tbl['article']);
|
|
|
250 |
if ($UnVoirAussi->NbVA > 0) {
|
|
|
251 |
$sortie .= '<br />'.'Consulter : ';
|
|
|
252 |
$liste_va = $UnVoirAussi->ListerVoirAussi();
|
|
|
253 |
for ($i = 0; $i == (($UnVoirAussi->NbVA) - 1); $i++) {
|
|
|
254 |
$sortie .= '<img class="'.BB_CLASS_IMG_ICONE.'" src="'.$liste_va[$i]['icon_src'].'" alt="'.$liste_va[$i]['icon_alt'].'" /> ';
|
|
|
255 |
$sortie .= '<a '.$liste_va[$i]['target'].'>'.$liste_va[$i]['texte'].'</a>';
|
|
|
256 |
if ($liste_va[$i]['desc'] != '') {
|
|
|
257 |
$ret .= ' - '.'<em>'.$liste_va[$i]['desc'].'</em>';
|
|
|
258 |
}
|
|
|
259 |
}
|
|
|
260 |
}
|
|
|
261 |
|
|
|
262 |
$sortie .= '</li>'."\n";
|
|
|
263 |
}
|
|
|
264 |
$sortie .= '</ul>'."\n";
|
|
|
265 |
}
|
|
|
266 |
mysql_free_result($resultat);
|
|
|
267 |
}
|
|
|
268 |
|
|
|
269 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
270 |
*
|
30 |
mathias |
271 |
* $Log$
|
2 |
jp_milcent |
272 |
*
|
|
|
273 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
274 |
*/
|
|
|
275 |
?>
|