Subversion Repositories eFlore/Archives.herbiers

Compare Revisions

Ignore whitespace Rev 16 → Rev 17

/trunk/applications/hb_consultation/hbc_info_herbier.inc.php
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: hbc_info_herbier.inc.php,v 1.1 2005-11-23 10:32:32 jp_milcent Exp $
// CVS : $Id: hbc_info_herbier.inc.php,v 1.2 2006-12-08 17:38:15 jp_milcent Exp $
/**
* Application fournissant des informations sur les herbiers
*
33,7 → 33,7
//Autres auteurs :
*@author Jean-Pascal MILCENT <jpm@clapas.org>
*@copyright Tela-Botanica 2000-2005
*@version $Revision: 1.1 $ $Date: 2005-11-23 10:32:32 $
*@version $Revision: 1.2 $ $Date: 2006-12-08 17:38:15 $
// +------------------------------------------------------------------------------------------------------+
*/
 
105,11 → 105,19
$sortie .= '</h2>'."\n";
}
 
if ($herb->LOGO != '') {
$sortie .= '<img id="hb_logo" src="'.$herb->LOGO.'" alt="Logo de l\'institution '.$herb->INSTITUTION_NAME.'"/>'."\n";
}
$sortie .= '<div id="hb_renseignement_admin">'."\n";
$sortie .= '<dl class="hb_affichage_tabulaire">'."\n".
'<dt>'.'Nom : '.'</dt>'.
'<dd>'.$herb->INSTITUTION_NAME.'</dd>'."\n";
'<dt>'.'Nom : '.'</dt>';
if ($herb->HO_URL != 'http://') {
$sortie .= '<dd><a class="lien_ext" href="'.$herb->HO_URL.'">'.$herb->INSTITUTION_NAME.'</a></dd>'."\n";
} else {
$sortie .= '<dd>'.$herb->INSTITUTION_NAME.'</dd>'."\n";
}
$sortie .= '<dt>'.'Index herbariorum : '.'</dt>'."\n";
if ($herb->EMAIL) {
if ($herb->INDEX_HERB) {
$sortie .= '<dd>'.$herb->INDEX_HERB.'</dd>'."\n";
} else {
$sortie .= '<dd>&nbsp;</dd>'."\n";
177,7 → 185,7
}
}
}
 
$sortie .= '</div>'."\n";
// 4. l'équipe
if (is_array($herb->equipe_liste) && count($herb->equipe_liste) != 0) {
$sortie .= '<h2>'.'L\'équipe'.'</h2>'."\n";
241,6 → 249,10
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2005/11/23 10:32:32 jp_milcent
* Ajout au dépot de l'application Herbiers.
* Elle doit à terme migrer dans eFlore.
*
* Revision 1.4 2005/04/06 13:29:41 jpm
* Correction du nom d'un attribut de la classe organisation.
*