Subversion Repositories eFlore/Applications.bibliobota

Rev

Rev 2 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
// +------------------------------------------------------------------------------------------------------+
4 jp_milcent 22
// CVS : $Id: bbc_info_livre.inc.php,v 1.2 2005-12-03 19:44:11 jp_milcent Exp $
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
4 jp_milcent 34
*@version       $Revision: 1.2 $ $Date: 2005-12-03 19:44:11 $
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
52
if ($var_biblio['open_proposer_media'] == 1) {
53
    $sortie .= CreateNavigBiblio('add', 'book', 'Proposer un nouveau livre', $tableau['book'], 1, $tableau);
4 jp_milcent 54
} else {
2 jp_milcent 55
    $sortie .= '&nbsp;';
56
}
57
 
58
// Ligne de titre
59
$requete =  'SELECT B_S_NOM '.
60
            'FROM '.$tbl['str'].' '.
61
            'WHERE B_S_IDSTR = '.$tableau['book'];
62
$resultat = mysql_query($requete) or die(BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
63
$num_s = mysql_num_rows($resultat);
64
 
65
if ($num_s != 1) {
66
    $sortie .=  '<p class="erreur"><strong>'.'Erreur de requête LIVRE !'.'</strong>'.
67
                ' nombre de résultats (= '.$num_s.') incohérent pour la requête : '.'<br />'.$requete.'</p>';
68
} else {
69
    // Récupération des infos sur la structure
70
    $ligne = mysql_fetch_object($resultat);
71
    $la_structure = $ligne->B_S_NOM;
72
    mysql_free_result($resultat);
73
 
74
    $tableau['args'] =  '&amp;book='.$tableau['book'];
75
 
76
    // Comptage du nombre de livres
77
    $requete =  'SELECT COUNT(*) AS COMPTAGE '.
78
                'FROM '.$tbl['item'].', '.$tbl['media'].' '.
79
                'WHERE '.$tbl['media'].'.B_M_LKSTR = '.$tableau['book'].' '.
80
                'AND '.$tbl['item'].'.B_I_TYPPHY = '.$def_livre.' '.
81
                'AND '.$tbl['item'].'.B_I_IDITEM = '.$tbl['media'].'.B_M_IDMEDIA';
82
    $resultat = mysql_query($requete) or die(BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
83
    $ligne = mysql_fetch_object($resultat);
84
    $num_c = $ligne->COMPTAGE;
85
    mysql_free_result($resultat);
86
 
87
    global $def_livre;
88
    $requete =  'select '.$tbl['item'].'.*, '.$tbl['media'].'.*, GEN_MON_SYMBOLE, B_AS_LIBELLE, GEN_MON_VAL1EURO, '.$tbl['domaine'].'.* '.
89
                'FROM '.$tbl['item'].', '.$tbl['media'].', '.$tbl['monnaie'].', '.$tbl['saisie'].', '.$tbl['domaine'].', '.$tbl['domaine_lk'].' '.
90
                'WHERE B_M_LKSTR = '.$tableau['book'].' '.
91
                'AND B_I_TYPPHY = '.$def_livre.' '.
92
                'AND B_I_IDITEM = B_M_IDMEDIA '.
93
                'AND GEN_MON_IDMONNAIE = B_M_LKMONNAIE '.
94
                'AND B_I_AUTEURSAISIE = B_AS_ID '.
95
                'AND B_I_IDITEM = B_DL_IDITEM '.
96
                'AND B_DL_IDDOM = B_D_ID '.
97
                'ORDER BY B_I_AUTEURS '.
98
                'LIMIT '.$tableau['pstart'].', '.$var_biblio['how_book'];
99
    $resultat = mysql_query($requete) or die (BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
100
    $nb_m = mysql_num_rows($resultat);
101
 
102
    // Titre de la page
103
    $sortie .= '<h1>'.$la_structure.' : livres'.'</h1>'."\n";
104
 
105
    // Récupération d'informations
106
    if (empty($tableau['step'])) {
107
        $tableau['step'] = $var_biblio['how_book'];
108
    }
109
    if (empty($tableau['how_bloc'])) {
110
        $tableau['step'] = $var_biblio['how_book'];
111
    }
112
    if (empty($tableau['pend'])) {
113
        $tableau['pend'] = $num_c;
114
    }
115
    if (empty($tableau['libelle'])) {
116
        $tableau['libelle'] = 'livre';
117
    }
118
    if (empty($tableau['feminin'])) {
119
        $tableau['feminin'] = 0;
120
    }
121
 
122
    // Affichage du nbre de résultats
123
    $sortie .= '<p id="frag_nbre_resultat">';
124
    $sortie .= FRAG_afficherTxtNbreResultat('bbpopup', $tableau, $nb_m, $num_c);
125
    $sortie .= '</p>'."\n";
126
 
127
    // Ici on fragmente en pages, pour une navigation plus facile
128
    $frag = new fragmenteur(' - ', 10, BB_URL_COURANTE_CONSULTATION_AVANCEE);
129
    $frag_txt = $frag->fragmente($tableau, $num_c);
130
    if (($frag->nb_pages) > 1) {
131
        $sortie .= '<p class="frag_navigation">'.$frag_txt.'</p>'."\n";
132
    }
133
 
134
    // Affichage des livres
135
    if ($num_c == 0) {
136
        $sortie .= '<p class="information">'.'Aucun livre indexé.'.'</p>';
137
    } else {
138
        $sortie .= '<ul id="bb_liste_livre">'."\n";
139
        while ($ligne = mysql_fetch_object($resultat)) {
140
            $id_a = $ligne->B_I_IDITEM;
141
            $titre = $ligne->B_I_TITRE;
142
            $auteurs = $ligne->B_I_AUTEURS;
143
            $geo = $ligne->B_I_GEO;
144
            $langue = $ligne->B_I_LANGUE;
145
            $resum = $ligne->B_I_RESUMCLE;
146
            $image = $ligne->B_I_IMAGE;
147
            $saisie = $ligne->B_AS_LIBELLE;
148
            $comment = $ligne->B_I_COMMENT;
149
            $date = $ligne->B_M_DATE;
150
            $prix = $ligne->B_M_PRIX;
151
            $idmonnaie = $ligne->B_M_LKMONNAIE;
152
            $monnaie = $ligne->GEN_MON_SYMBOLE;
153
            $converter = $ligne->GEN_MON_VAL1EURO;
154
            $volume = $ligne->B_M_VOLUME;
155
            $edite = $ligne->B_M_EDITE;
156
            $vendu = $ligne->B_M_VEND;
157
            $editeur = $ligne->B_M_EDITEUR;
158
            $collection_book = $ligne->B_M_COLLECTION;
159
            $numcoll_book = $ligne->B_M_NUMCOLL;
160
            $get_domaine_id = $ligne->B_D_ID;
161
            $get_domaine_nom = $ligne->B_D_LABEL;
162
 
163
            $sortie .= '<li>'."\n";
164
 
165
            if ($image != '') {
166
                $sortie .=  '<img class="bb_img_livre" src="'.BB_CHEMIN_IMAGES_ILLUSTRATION.$image.'" '.
167
                            'alt="'.'Illustration du livre : '.$titre.'" />';
168
            }
169
 
170
            if ($get_domaine_id != 1) {
171
                $sortie .= '<span class="texte_inactif">'.'['.$get_domaine_nom.']'.'</span>'."\n";
172
            }
173
 
174
            if (($auteurs == '') || ($auteurs == 'ANONYME')) {
175
                $sortie .= 'Inconnu ou Anonyme'.' - ';
176
            } else {
177
                $sortie .= $auteurs.' - ';
178
            }
179
 
180
            $sortie .= '<strong>'.$titre.'</strong>'.' -'."\n";
181
 
182
            $sortie .= ' Éditeur : ';
183
            if ($editeur != '') {
184
                $sortie .= $editeur;
185
            } else {
186
                $sortie .= 'inconnu';
187
            }
188
            $sortie .= ' - ';
189
            if (($collection_book != '') || ($numcoll_book != '')) {
190
                $sortie .= 'Collection : '.$collection_book.' '.$numcoll_book.' - ';
191
            }
192
 
193
            if ($geo != '') {
194
                $sortie .= 'Départ./Région : '.'<em>'.$geo.'</em>'.' -';
195
            }
196
 
197
            if ($date > 0) {
198
                $sortie .= ' '.DAT_formaterDateYYYYMMJJ($date).', ';
199
            }
200
            if ($volume != '') {
201
                $sortie .= $volume.', ';
202
            }
203
 
204
            if ($prix > 0) {
205
                $sortie .= $prix.' '.$monnaie;
206
            }
207
 
208
            if (($def_euro != $idmonnaie) && ($converter > 0)) {
209
                $sortie .= ' (env. '.round($prix/$converter, 2).' &euro;)';
210
            }
211
 
212
            if ($langue != '') {
213
                $sortie .= ' ('.$langue.')';
214
            }
215
 
216
            if (($resum != '') || ($comment != '')) {
217
                $sortie .= ' - '.'<em>'.$comment;
218
                if (($resum != '') && ($comment != '')) {
219
                    $sortie .= ' - ';
220
                }
221
                $sortie .= $resum.'</em>';
222
            }
223
 
224
            if ($vendu == -1) {
225
                $sortie .= ' - '.'<img class="'.BB_CLASS_IMG_EPUISE.'" src="'.BB_IMG_EPUISE.'" alt="'.'Épuisé'.'" />';
226
            }
227
 
228
            if (($edite == 1) || ($vendu == 1)) {
229
                $sortie .= ' - '.'Organisme ';
230
                if ($edite == 1) {
231
                    $sortie .= 'éditeur';
232
                }
233
                if (($edite == 1) && ($vendu == 1)) {
234
                    $sortie .= ' et ';
235
                }
236
                if ($vendu == 1) {
237
                    $sortie .= 'vendeur';
238
                }
239
                $sortie .= ' de l\'article';
240
            }
241
 
242
            if ($saisie != '') {
243
                $sortie .= '<span class="texte_inactif">'.' - '.'Saisie : '.$saisie.' - Art. n°'.$id_a.'.'.'</span>';
244
            }
245
 
246
            // Là on affiche les Voir Aussi Livres ... si y'en a
247
            $UnVoirAussi = new VoirAussi($id_a, $tbl['article']);
248
            if ($UnVoirAussi->NbVA > 0) {
249
                $sortie .= '<br />'.'Consulter : ';
250
                $liste_va = $UnVoirAussi->ListerVoirAussi();
251
                for ($i = 0; $i == (($UnVoirAussi->NbVA) - 1); $i++) {
252
                    $sortie .= '<img class="'.BB_CLASS_IMG_ICONE.'" src="'.$liste_va[$i]['icon_src'].'" alt="'.$liste_va[$i]['icon_alt'].'" /> ';
253
                    $sortie .= '<a '.$liste_va[$i]['target'].'>'.$liste_va[$i]['texte'].'</a>';
254
                    if ($liste_va[$i]['desc'] != '') {
255
                        $ret .= ' - '.'<em>'.$liste_va[$i]['desc'].'</em>';
256
                    }
257
                }
258
            }
259
 
260
            $sortie .= '</li>'."\n";
261
        }
262
        $sortie .= '</ul>'."\n";
263
    }
264
    mysql_free_result($resultat);
265
}
266
 
267
/* +--Fin du code ----------------------------------------------------------------------------------------+
268
*
269
* $Log: not supported by cvs2svn $
4 jp_milcent 270
* Revision 1.1  2005/11/23 10:22:25  jp_milcent
271
* Ajout au dépot de l'application BiblioBota.
272
* Elle doit à terme migrer dans eFlore.
2 jp_milcent 273
*
4 jp_milcent 274
*
2 jp_milcent 275
* +-- Fin du code ----------------------------------------------------------------------------------------+
276
*/
277
?>