Subversion Repositories eFlore/Applications.bibliobota

Rev

Rev 2 | Rev 27 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 19
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: bb_commun.fonct.php,v 1.1 2005-11-23 10:22:25 jp_milcent Exp $
22
// CVS : $Id: bb_commun.fonct.php,v 1.2 2007-02-13 17:40:22 jp_milcent Exp $
23
/**
23
/**
24
* Fonctions communes aux applications de Biblio Bota.
24
* Fonctions communes aux applications de Biblio Bota.
25
*
25
*
26
* Contient des fonctions communes aux applications de Biblio Bota.
26
* Contient des fonctions communes aux applications de Biblio Bota.
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 17:40:22 $
36
// +------------------------------------------------------------------------------------------------------+
36
// +------------------------------------------------------------------------------------------------------+
37
*/
37
*/
Line 38... Line 38...
38
 
38
 
39
// +------------------------------------------------------------------------------------------------------+
39
// +------------------------------------------------------------------------------------------------------+
Line 85... Line 85...
85
    unset($tab_entites['>']);
85
    unset($tab_entites['>']);
86
    unset($tab_entites['&']);
86
    unset($tab_entites['&']);
87
    $tab_entites[' & '] = ' &amp; ';
87
    $tab_entites[' & '] = ' &amp; ';
88
    return strtr($texte, $tab_entites);
88
    return strtr($texte, $tab_entites);
89
}
89
}
-
 
90
 
-
 
91
/**
-
 
92
 * Fonction fournissant une date au format français depuis une date Mysql
-
 
93
 * 
-
 
94
 * @param string la date au format Mysql
-
 
95
 * @return string la date au format français
-
 
96
 */
-
 
97
function donnerDateConviviale($chaine)
-
 
98
{
-
 
99
	if (preg_match('/^(\d{4})-(\d{2})$/',$chaine, $match)) {
-
 
100
		$annee = $match[1];
-
 
101
		$mois = $match[2];
-
 
102
		switch ($mois) {
-
 
103
			case '01' :
-
 
104
				$mois_sortie = 'janvier';
-
 
105
				break;
-
 
106
			case '02' :
-
 
107
				$mois_sortie = 'février';
-
 
108
				break;
-
 
109
			case '03' :
-
 
110
				$mois_sortie = 'mars';
-
 
111
				break;
-
 
112
			case '04' :
-
 
113
				$mois_sortie = 'avril';
-
 
114
				break;
-
 
115
			case '05' :
-
 
116
				$mois_sortie = 'mai';
-
 
117
				break;
-
 
118
			case '06' :
-
 
119
				$mois_sortie = 'juin';
-
 
120
				break;
-
 
121
			case '07' :
-
 
122
				$mois_sortie = 'juillet';
-
 
123
				break;
-
 
124
			case '08' :
-
 
125
				$mois_sortie = 'août';
-
 
126
				break;
-
 
127
			case '09' :
-
 
128
				$mois_sortie = 'septembre';
-
 
129
				break;
-
 
130
			case '10' :
-
 
131
				$mois_sortie = 'octobre';
-
 
132
				break;
-
 
133
			case '11' :
-
 
134
				$mois_sortie = 'novembre';
-
 
135
				break;
-
 
136
			case '12' :
-
 
137
				$mois_sortie = 'décembre';
-
 
138
				break;
-
 
139
		}
-
 
140
		return $mois_sortie.' '.$annee;
-
 
141
	} else {
-
 
142
		return '?';
-
 
143
	}
-
 
144
}
90
/* +--Fin du code ----------------------------------------------------------------------------------------+
145
/* +--Fin du code ----------------------------------------------------------------------------------------+
91
*
146
*
92
* $Log: not supported by cvs2svn $
147
* $Log: not supported by cvs2svn $
-
 
148
* Revision 1.1  2005/11/23 10:22:25  jp_milcent
-
 
149
* Ajout au dépot de l'application BiblioBota.
-
 
150
* Elle doit à terme migrer dans eFlore.
-
 
151
*
93
* Revision 1.2  2005/05/17 10:10:08  jpm
152
* Revision 1.2  2005/05/17 10:10:08  jpm
94
* Correction des bogues avant mise en ligne du site v4.
153
* Correction des bogues avant mise en ligne du site v4.
95
*
154
*
96
* Revision 1.1  2004/09/14 11:12:50  jpm
155
* Revision 1.1  2004/09/14 11:12:50  jpm
97
* Ajout des fonctions communes aux applications de BiblioBota.
156
* Ajout des fonctions communes aux applications de BiblioBota.