Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
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 |
|
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 |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: bbc_affichage.fonct.php,v 1.1 2005-11-23 10:22:25 jp_milcent Exp $
|
22 |
// CVS : $Id: bbc_affichage.fonct.php,v 1.2 2007-02-13 18:06:21 jp_milcent Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Fonctions de l'interface de consultation de Biblio Bota.
|
24 |
* Fonctions de l'interface de consultation de Biblio Bota.
|
25 |
*
|
25 |
*
|
26 |
* Contient les fonctions fournissant du XHTML pour l'affichage de l'interface de consultation de BibioBota.
|
26 |
* Contient les fonctions fournissant du XHTML pour l'affichage de l'interface de consultation de BibioBota.
|
27 |
*
|
27 |
*
|
Line 30... |
Line 30... |
30 |
//Auteur original :
|
30 |
//Auteur original :
|
31 |
*@author Jean-Charles GRANGER <tela@vecteur.org>
|
31 |
*@author Jean-Charles GRANGER <tela@vecteur.org>
|
32 |
//Autres auteurs :
|
32 |
//Autres auteurs :
|
33 |
*@author Jean-Pascal MILCENT <jpm@clapas.org>
|
33 |
*@author Jean-Pascal MILCENT <jpm@clapas.org>
|
34 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@copyright Tela-Botanica 2000-2004
|
35 |
*@version $Revision: 1.1 $ $Date: 2005-11-23 10:22:25 $
|
35 |
*@version $Revision: 1.2 $ $Date: 2007-02-13 18:06:21 $
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
37 |
*/
|
37 |
*/
|
Line 38... |
Line 38... |
38 |
|
38 |
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
Line 428... |
Line 428... |
428 |
// Permet de descendre des coll aux fasc
|
428 |
// Permet de descendre des coll aux fasc
|
429 |
$action = BB_URL_COURANTE_CONSULTATION.'&consultation=avancee&page=1&fasc='.$tableau['pass'].$tableau['args'];
|
429 |
$action = BB_URL_COURANTE_CONSULTATION.'&consultation=avancee&page=1&fasc='.$tableau['pass'].$tableau['args'];
|
430 |
$retour = '<p class="bb_navigation">';
|
430 |
$retour = '<p class="bb_navigation">';
|
431 |
$retour .= '<a href="'.$action.'">';
|
431 |
$retour .= '<a href="'.$action.'">';
|
432 |
if ($image == 1) {
|
432 |
if ($image == 1) {
|
- |
|
433 |
$retour .= $texte.' ';
|
433 |
$retour .= '<img class="'.BB_CLASS_IMG_PRECEDENT.'" src="'.BB_IMG_PRECEDENT.'" alt="'.$texte.'..."/>';
|
434 |
$retour .= '<img class="'.BB_CLASS_IMG_SUIVANT.'" src="'.BB_IMG_SUIVANT.'" alt="'.$texte.'..."/>';
|
434 |
$retour .= ' '.$texte;
|
- |
|
435 |
} else {
|
435 |
} else {
|
436 |
$retour .= ' '.$texte;
|
436 |
$retour .= ' '.$texte;
|
437 |
}
|
437 |
}
|
438 |
$retour .= '</a></p>'."\n";
|
438 |
$retour .= '</a></p>'."\n";
|
439 |
break;
|
439 |
break;
|
Line 442... |
Line 442... |
442 |
$action = BB_URL_COURANTE_CONSULTATION.'&consultation=avancee&page=1&art='.$tableau['pass'].$tableau['args'].
|
442 |
$action = BB_URL_COURANTE_CONSULTATION.'&consultation=avancee&page=1&art='.$tableau['pass'].$tableau['args'].
|
443 |
'&locusfasc='.$tableau['locusfasc'];
|
443 |
'&locusfasc='.$tableau['locusfasc'];
|
444 |
$retour = ' - ';
|
444 |
$retour = ' - ';
|
445 |
$retour .= '<a href="'.$action.'">';
|
445 |
$retour .= '<a href="'.$action.'">';
|
446 |
if ($image == 1) {
|
446 |
if ($image == 1) {
|
- |
|
447 |
$retour .= $texte.' ';
|
447 |
$retour .= '<img class="'.BB_CLASS_IMG_PRECEDENT.'" src="'.BB_IMG_PRECEDENT.'" alt="'.$texte.'..."/>';
|
448 |
$retour .= '<img class="'.BB_CLASS_IMG_SUIVANT.'" src="'.BB_IMG_SUIVANT.'" alt="'.$texte.'..."/>';
|
448 |
$retour .= ' '.$texte;
|
- |
|
449 |
} else {
|
449 |
} else {
|
450 |
$retour .= ' '.$texte;
|
450 |
$retour .= ' '.$texte;
|
451 |
}
|
451 |
}
|
452 |
$retour .= '</a>'."\n";
|
452 |
$retour .= '</a>'."\n";
|
453 |
break;
|
453 |
break;
|
Line 459... |
Line 459... |
459 |
}
|
459 |
}
|
Line 460... |
Line 460... |
460 |
|
460 |
|
461 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
461 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
462 |
*
|
462 |
*
|
- |
|
463 |
* $Log: not supported by cvs2svn $
|
- |
|
464 |
* Revision 1.1 2005/11/23 10:22:25 jp_milcent
|
- |
|
465 |
* Ajout au dépot de l'application BiblioBota.
|
- |
|
466 |
* Elle doit à terme migrer dans eFlore.
|
463 |
* $Log: not supported by cvs2svn $
|
467 |
*
|
464 |
* Revision 1.6 2005/05/17 10:10:08 jpm
|
468 |
* Revision 1.6 2005/05/17 10:10:08 jpm
|
465 |
* Correction des bogues avant mise en ligne du site v4.
|
469 |
* Correction des bogues avant mise en ligne du site v4.
|
466 |
*
|
470 |
*
|
467 |
* Revision 1.5 2005/01/04 16:23:47 jpm
|
471 |
* Revision 1.5 2005/01/04 16:23:47 jpm
|