Subversion Repositories eFlore/Applications.bibliobota

Rev

Rev 2 | 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
// +------------------------------------------------------------------------------------------------------+
30 mathias 22
// CVS : $Id$
2 jp_milcent 23
/**
24
* Appli bb_consultation : gestion des informations avancées "media" de Biblio Bota
25
*
26
* Ce fichier permet d'afficher les informations concernant les "médias" 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
$tableau['args'] = '&amp;arg_0=str%3D'.$tableau['media'].'&amp;arg_1=coll%3D'.$tableau['media'].'&amp;arg_2=book%3D'.$tableau['media'].'&amp;arg_3=media%3D'.$tableau['media'];
51
 
52
// Proposition d'édition
30 mathias 53
/* TODO NAVIGBIBLIO */
2 jp_milcent 54
/*
55
$sortie .= '<p>'."\n";
56
if ($var_biblio['open_proposer_media'] == 1) {
57
    $sortie .= CreateNavigBiblio('add', 'media', 'Proposer un nouveau media', $tableau['media'], 1, $tableau);
58
} else {
59
    $sortie .= '&nbsp;';
60
}
61
$sortie .= '</p>'."\n";
62
*/
63
 
64
// Récupèration du nom de la structure
65
$requete =  'SELECT B_S_NOM '.
66
            'FROM '.$tbl['str'].' '.
67
            'WHERE B_S_IDSTR = '.$tableau['media'];
68
$resultat = mysql_query($requete) or die(BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
69
$num_s = mysql_num_rows($resultat);
70
 
71
if ($num_s != 1) {
72
    $sortie .=  '<p class="erreur"><strong>'.'Erreur de requête MEDIA !'.'</strong>'.
73
                ' nombre de résultats (= '.$num_s.') incohérent pour la requête : '.'<br />'.$requete.'</p>';
74
} else {
75
    $ligne = mysql_fetch_object($resultat);
76
    $la_structure = $ligne->B_S_NOM;
77
    mysql_free_result($resultat);
78
 
79
    // Comptage du nombre de médias
80
    $requete =  'SELECT COUNT(*) AS COMPTAGE '.
81
                'FROM '.$tbl['item'].', '.$tbl['media'].' '.
82
                'WHERE '.$tbl['media'].'.B_M_LKSTR = '.$tableau['media'].' '.
83
                'AND '.$tbl['item'].'.B_I_TYPPHY <> '.$def_livre.' '.
84
                'AND '.$tbl['item'].'.B_I_IDITEM = '.$tbl['media'].'.B_M_IDMEDIA';
85
    $resultat = mysql_query($requete) or die(BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
86
    $tmp_nb_c = mysql_fetch_object($resultat);
87
    $num_c = $tmp_nb_c->COMPTAGE;
88
    mysql_free_result($resultat);
89
 
90
    $requete =  'SELECT '.$tbl['item'].'.*, '.$tbl['media'].'.*, GEN_MON_SYMBOLE, B_AS_LIBELLE, GEN_MON_VAL1EURO, '.$tbl['item_typphy'].'.*, '.$tbl['item_typlog'].'.*, '.$tbl['domaine'].'.* '.
91
                'FROM '.$tbl['item'].', '.$tbl['media'].', '.$tbl['monnaie'].', '.$tbl['saisie'].', '.$tbl['item_typphy'].', '.$tbl['item_typlog'].', '.$tbl['domaine'].', '.$tbl['domaine_lk'].' '.
92
                'WHERE B_M_LKSTR = '.$tableau['media'].' '.
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_TYPLOG = B_IL_ID '.
98
                'AND B_I_TYPPHY = B_IP_ID '.
99
                'AND B_I_IDITEM = B_DL_IDITEM '.
100
                'AND B_DL_IDDOM = B_D_ID '.
101
                'ORDER BY B_I_TYPLOG, B_I_TYPPHY, B_I_AUTEURS '.
102
                'LIMIT '.$tableau['pstart'].', '.$var_biblio['how_book'];
103
    $resultat = mysql_query($requete) or die(BOG_afficherErreurSql(__FILE__, __LINE__, mysql_error(), $requete));
104
    $nb_m = mysql_num_rows($resultat);
105
 
106
    // Affichage du titre
107
    $sortie .= '<h1>'.$la_structure.' : médias'.'</h1>'."\n";
108
 
109
    // Récupération d'informations
110
    if (empty($tableau['step'])) {
111
        $tableau['step'] = $var_biblio['how_book'];
112
    }
113
    if (empty($tableau['pend'])) {
114
        $tableau['pend'] = $num_c;
115
    }
116
    if (empty($tableau['libelle'])) {
117
        $tableau['libelle'] = 'média';
118
    }
119
    if (empty($tableau['feminin'])) {
120
        $tableau['feminin'] = 0;
121
    }
122
 
123
    // Affichage du nbre de résultats
124
    $sortie .= '<p id="frag_nbre_resultat">';
125
    $sortie .= FRAG_afficherTxtNbreResultat('bbpopup', $tableau, $nb_m, $num_c);
126
    $sortie .= '</p>'."\n";
127
 
128
    // Ici on fragmente en pages, pour une navigation plus facile
129
    $frag = new fragmenteur(' - ', 10, BB_URL_COURANTE_CONSULTATION_AVANCEE);
130
    $frag_txt = $frag->fragmente($tableau, $num_c);
131
    if (($frag->nb_pages)>1) {
132
        $sortie .= '<p class="frag_navigation">'.$frag_txt.'</p>'."\n";
133
    }
134
 
135
    // Affichage des médias
136
    if ($num_c == 0) {
137
        $sortie .= '<p class="information">'.'Aucun média indexé.'.'</p>'."\n";
138
    } else {
139
        $sortie .= '<ul id="bb_liste_article">'."\n";
140
        while ($ligne = mysql_fetch_object($resultat)) {
141
            $id_a = $ligne->B_I_IDITEM;
142
            $titre = $ligne->B_I_TITRE;
143
            $auteurs = $ligne->B_I_AUTEURS;
144
            $geo = $ligne->B_I_GEO;
145
            $langue = $ligne->B_I_LANGUE;
146
            $resum = $ligne->B_I_RESUMCLE;
147
            $image = $ligne->B_I_IMAGE;
148
            $saisie = $ligne->B_AS_LIBELLE;
149
            $comment = $ligne->B_I_COMMENT;
150
            $date = $ligne->B_M_DATE;
151
            $prix = $ligne->B_M_PRIX;
152
            $idmonnaie = $ligne->B_M_LKMONNAIE;
153
            $monnaie = $ligne->GEN_MON_SYMBOLE;
154
            $converter = $ligne->GEN_MON_VAL1EURO;
155
            $volume = $ligne->B_M_VOLUME;
156
            $edite = $ligne->B_M_EDITE;
157
            $vendu = $ligne->B_M_VEND;
158
            $editeur = $ligne->B_M_EDITEUR;
159
            $collection_book = $ligne->B_M_COLLECTION;
160
            $numcoll_book = $ligne->B_M_NUMCOLL;
161
            $get_domaine_id = $ligne->B_D_ID;
162
            $get_domaine_nom = $ligne->B_D_LABEL;
163
            $item_phy = $ligne->B_IP_LABEL;
164
            $icon_phy = $ligne->B_IP_IMAGE;
165
            $item_log = $ligne->B_IL_LABEL;
166
            $icon_log = $ligne->B_IL_IMAGE;
167
 
168
            $sortie .= '<li>'."\n";
169
 
170
            if ($image != '') {
171
                $sortie .=  '<img class="bb_img_media" src="'.BB_CHEMIN_IMAGES_ILLUSTRATION.$image.'" '.
172
                            'alt="'.'Illustration du média : '.$titre.'" />';
173
            }
174
 
175
            $sortie .= '<span class="texte_inactif">';
176
 
177
            if ($get_domaine_id != 1) {
178
                $sortie .= '['.$get_domaine_nom.']'."\n";
179
            }
180
 
181
            if ($icon_phy != '') {
182
                $sortie .= '<img class="'.BB_CLASS_IMG_ICONE.'" src="'.BB_CHEMIN_IMAGES_TYPE_PHYSIQUE.$icon_phy.'" alt="'.$item_phy.'" />';
183
            } else {
184
                $sortie .= '['.$item_phy.']';
185
            }
186
 
187
            if (($icon_phy == '') && ($icon_log)) {
188
                $sortie .= ' - ';
189
            }
190
 
191
            if ($icon_log != '') {
192
                $sortie .= '<img class="'.BB_CLASS_IMG_ICONE.'" src="'.BB_CHEMIN_IMAGES_TYPE_LOGIQUE.$icon_log.'" alt="'.$item_log.'" />';
193
            } else {
194
                $sortie .= '['.$item_log.']';
195
            }
196
            $sortie .= '</span> ';
197
 
198
            $sortie .= $auteurs.' - '.'<strong>'.$titre.'</strong>'.' -'."\n";
199
 
200
            $sortie .= ' Éditeur : ';
201
            if ($editeur != '') {
202
                $sortie .= $editeur;
203
            } else {
204
                $sortie .= 'inconnu';
205
            }
206
            $sortie .= ' - ';
207
 
208
            if (($collection_book != '') || ($numcoll_book != '')) {
209
                $sortie .= 'Collection : '.$collection_book.' '.$numcoll_book.' - ';
210
            }
211
 
212
            if ($geo != '') {
213
                $sortie .= 'Départ./Région : '.'<em>'.$geo.'</em>'.' -';
214
            }
215
 
216
            if ($date > 0) {
217
                $sortie .= ' '.DAT_formaterDateYYYYMMJJ($date).', ';
218
            }
219
            if ($volume != '') {
220
                $sortie .= $volume.', ';
221
            }
222
            if ($prix > 0) {
223
                $sortie .= $prix.' '.$monnaie;
224
            }
225
 
226
            if (($def_euro != $idmonnaie) && ($converter > 0)) {
227
                $sortie .= ' (env. '.round($prix / $converter, 2).' &euro;)';
228
            }
229
 
230
            if ($langue != '') {
231
                $sortie .= ' ('.$langue.')';
232
            }
233
 
234
            if (($resum != '') || ($comment != '')) {
235
                $sortie .= ' - '.'<em>'.$comment;
236
                if (($resum != '') && ($comment != '')) {
237
                    $sortie .= ' - ';
238
                }
239
                $sortie .= $resum.'</em>';
240
            }
241
 
242
            if ($vendu == -1) {
243
                $sortie .= ' - '.'<img class="'.BB_CLASS_IMG_EPUISE.'" src="'.BB_IMG_EPUISE.'" alt="'.'Épuisé'.'" />';
244
            }
245
 
246
            if (($edite == 1) || ($vendu == 1)) {
247
                $sortie .= ' - '.'Organisme ';
248
                if ($edite == 1) {
249
                    $sortie .= 'éditeur';
250
                }
251
                if (($edite == 1) && ($vendu == 1)) {
252
                    $sortie .= ' et ';
253
                }
254
                if ($vendu == 1) {
255
                    $sortie .= 'vendeur';
256
                }
257
                $sortie .= ' de l\'article';
258
            }
259
 
260
            if ($saisie != '') {
261
                $sortie .= '<span class="texte_inactif">'.' - '.'Saisie : '.$saisie.' - '.'Art. n°'.$id_a.'.'.'</span>';
262
            }
263
 
264
            // Là on affiche les Voir Aussi Médias ... si y'en a
265
            $UnVoirAussi = new VoirAussi($id_a, $tbl['article']);
266
            if ($UnVoirAussi->NbVA > 0) {
267
                $sortie .= '<br />'.'Consulter : ';
268
                $liste_va = $UnVoirAussi->ListerVoirAussi();
269
                for ($i = 0; $i == (($UnVoirAussi->NbVA) - 1); $i++) {
270
                    $sortie .= '<img class="'.BB_CLASS_IMG_ICONE.'" src="'.$liste_va[$i]['icon_src'].'" alt="'.$liste_va[$i]['icon_alt'].'" /> ';
271
                    $sortie .= '<a '.$liste_va[$i]['target'].'>'.$liste_va[$i]['texte'].'</a>';
272
                    if ($liste_va[$i]['desc'] != '') {
273
                        $ret .= ' - '.'<em>'.$liste_va[$i]['desc'].'</em>';
274
                    }
275
                }
276
            }
277
 
278
            $sortie .= '</li>'."\n";
279
        }
280
        $sortie .= '</ul>'."\n";
281
    }
282
    mysql_free_result($resultat);
283
}
284
 
285
/* +--Fin du code ----------------------------------------------------------------------------------------+
286
*
30 mathias 287
* $Log$
2 jp_milcent 288
*
289
* +-- Fin du code ----------------------------------------------------------------------------------------+
290
*/
291
?>