Line 1... |
Line 1... |
1 |
<?php
|
1 |
<?php
|
2 |
// declare(encoding='UTF-8');
|
2 |
// declare(encoding='UTF-8');
|
3 |
/**
|
3 |
/**
|
4 |
* Classe mère du module Liste.
|
4 |
* Classe mère du module Liste.
|
5 |
*
|
5 |
*
|
6 |
* @category PHP 5.2
|
6 |
* @category PHP 5.2
|
7 |
* @package eflore-consultation
|
7 |
* @package eflore-consultation
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
9 |
* @author Delphine CAUQUIL <delphine@tela-botanica.org>
|
9 |
* @author Delphine CAUQUIL <delphine@tela-botanica.org>
|
10 |
* @copyright 2011 Tela-Botanica
|
10 |
* @copyright 2011 Tela-Botanica
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
|
12 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
|
12 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
|
13 |
* @version $Id$
|
13 |
* @version $Id$
|
14 |
*/
|
14 |
*/
|
15 |
class Description extends aControleur {
|
15 |
class Description extends aControleur {
|
16 |
|
- |
|
17 |
private $conteneur = null;
|
16 |
private $conteneur = null;
|
18 |
private $nomCourant = null;
|
17 |
private $nomCourant = null;
|
19 |
private $textes = null;
|
18 |
private $textes = null;
|
20 |
private $meta = null;
|
19 |
private $meta = null;
|
21 |
private $wikini = null;
|
20 |
private $wikini = null;
|
22 |
private $informations = null;
|
21 |
private $informations = null;
|
23 |
static $mois = array(
|
22 |
static $mois = array (
|
- |
|
23 |
'janvier',
|
24 |
'janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet',
|
24 |
'février',
|
- |
|
25 |
'mars',
|
- |
|
26 |
'avril',
|
- |
|
27 |
'mai',
|
- |
|
28 |
'juin',
|
- |
|
29 |
'juillet',
|
- |
|
30 |
'août',
|
25 |
'août', 'septembre', 'octobre', 'novembre', 'décembre');
|
31 |
'septembre',
|
- |
|
32 |
'octobre',
|
- |
|
33 |
'novembre',
|
- |
|
34 |
'décembre'
|
- |
|
35 |
);
|
26 |
private $CosteFormate;
|
36 |
private $CosteFormate;
|
27 |
private $CosteTexte;
|
37 |
private $CosteTexte;
|
28 |
|
- |
|
29 |
private $referentiel = 'bdtfx';
|
38 |
private $referentiel = 'bdtfx';
|
30 |
private $donnees = array();
|
39 |
private $donnees = array ();
|
31 |
|
- |
|
32 |
public function __construct(Conteneur $conteneur) {
|
40 |
public function __construct(Conteneur $conteneur) {
|
33 |
$this->conteneur = $conteneur;
|
41 |
$this->conteneur = $conteneur;
|
34 |
$this->nomCourant = $this->conteneur->getNomCourant();
|
42 |
$this->nomCourant = $this->conteneur->getNomCourant ();
|
35 |
$this->referentiel = $this->conteneur->getParametre('referentiel');
|
43 |
$this->referentiel = $this->conteneur->getParametre ( 'referentiel' );
|
36 |
$this->textes = $this->conteneur->getApiTextes();
|
44 |
$this->textes = $this->conteneur->getApiTextes ();
|
37 |
$this->wikini = $this->conteneur->getApiWikini();
|
45 |
$this->wikini = $this->conteneur->getApiWikini ();
|
38 |
$this->meta = $this->conteneur->getApiMetaDonnees();
|
46 |
$this->meta = $this->conteneur->getApiMetaDonnees ();
|
39 |
$this->informations = $this->conteneur->getApiInformations();
|
47 |
$this->informations = $this->conteneur->getApiInformations ();
|
40 |
$this->appUrls = $this->conteneur->getAppUrls();
|
48 |
$this->appUrls = $this->conteneur->getAppUrls ();
|
41 |
}
|
49 |
}
|
42 |
|
- |
|
43 |
public function obtenirDonnees() {
|
50 |
public function obtenirDonnees() {
|
44 |
$donnees = array();
|
51 |
$donnees = array ();
|
45 |
$this->getWikipedia();
|
52 |
$this->getWikipedia ();
|
46 |
$this->getWikini();
|
53 |
$this->getWikini ();
|
47 |
$this->getDescriptionsDependantesReferentiel($this->referentiel);
|
54 |
$this->getDescriptionsDependantesReferentiel ( $this->referentiel );
|
48 |
if ($this->referentiel == 'bdtfx') {
|
55 |
if ($this->referentiel == 'bdtfx') {
|
49 |
$this->getCoste();
|
56 |
$this->getCoste ();
|
50 |
}
|
57 |
}
|
51 |
return $this->donnees;
|
58 |
return $this->donnees;
|
52 |
}
|
59 |
}
|
53 |
|
- |
|
54 |
public function obtenirDonneesExport() {
|
60 |
public function obtenirDonneesExport() {
|
55 |
$donnees = array();
|
61 |
$donnees = array ();
|
56 |
$this->getWikini();
|
62 |
$this->getWikini ();
|
57 |
$this->getDescriptionsDependantesReferentiel($this->referentiel);
|
63 |
$this->getDescriptionsDependantesReferentiel ( $this->referentiel );
|
58 |
return $this->donnees;
|
64 |
return $this->donnees;
|
59 |
}
|
65 |
}
|
60 |
|
- |
|
61 |
private function getDescriptionsDependantesReferentiel($ref) {
|
66 |
private function getDescriptionsDependantesReferentiel($ref) {
|
62 |
if(trim(Config::get($ref . '.baseDescription')) != "") {
|
67 |
if (trim ( Config::get ( $ref . '.baseDescription' ) ) != "") {
|
63 |
// eg: [bdtfx]baseDescription = coste,baseflor dans bdtfx.ini
|
68 |
// eg: [bdtfx]baseDescription = coste,baseflor dans bdtfx.ini
|
64 |
$bases_descriptions = explode(',', Config::get($ref . '.baseDescription'));
|
69 |
$bases_descriptions = explode ( ',', Config::get ( $ref . '.baseDescription' ) );
|
65 |
foreach ($bases_descriptions as $base) {
|
70 |
foreach ( $bases_descriptions as $base ) {
|
66 |
$fonction = 'get'.ucfirst($base);
|
71 |
$fonction = 'get' . ucfirst ( $base );
|
67 |
$this->$fonction();
|
72 |
$this->$fonction ();
|
68 |
}
|
73 |
}
|
69 |
}
|
74 |
}
|
70 |
}
|
75 |
}
|
71 |
|
- |
|
72 |
public function getBloc() {
|
76 |
public function getBloc() {
|
73 |
// prend la première description disponible dans l'ordre indiqué dans le fichier
|
77 |
// prend la première description disponible dans l'ordre indiqué dans le fichier
|
74 |
// de config, et prend la description wiki sinon
|
78 |
// de config, et prend la description wiki sinon
|
75 |
if(Config::get($this->referentiel.'.baseDescription') != "") {
|
79 |
if (Config::get ( $this->referentiel . '.baseDescription' ) != "") {
|
76 |
$bases_descriptions = explode(',', Config::get($this->referentiel.'.baseDescription'));
|
80 |
$bases_descriptions = explode ( ',', Config::get ( $this->referentiel . '.baseDescription' ) );
|
77 |
foreach ($bases_descriptions as $base) {
|
81 |
foreach ( $bases_descriptions as $base ) {
|
78 |
$fonction = 'get'.ucfirst($base);
|
82 |
$fonction = 'get' . ucfirst ( $base );
|
79 |
$this->$fonction();
|
83 |
$this->$fonction ();
|
80 |
if(empty($this->donnees[$base]['description'])) {
|
84 |
if (empty ( $this->donnees [$base] ['description'] )) {
|
81 |
unset($this->donnees[$base]);
|
85 |
unset ( $this->donnees [$base] );
|
82 |
continue;
|
86 |
continue;
|
83 |
}
|
87 |
}
|
84 |
|
88 |
|
85 |
$this->donnees['type'] = $base;
|
89 |
$this->donnees ['type'] = $base;
|
86 |
$this->donnees['titre'] = "Description de ".ucfirst($base);
|
90 |
$this->donnees ['titre'] = "Description de " . ucfirst ( $base );
|
87 |
$this->donnees['description'] = $this->donnees[$base]['description'];
|
91 |
$this->donnees ['description'] = $this->donnees [$base] ['description'];
|
88 |
unset($this->donnees[$base]);
|
92 |
unset ( $this->donnees [$base] );
|
89 |
return $this->donnees;
|
93 |
return $this->donnees;
|
90 |
}
|
94 |
}
|
91 |
}
|
95 |
}
|
92 |
|
96 |
|
93 |
if (empty($this->donnees['description'])) {
|
97 |
if (empty ( $this->donnees ['description'] )) {
|
94 |
$this->getWikini();
|
98 |
$this->getWikini ();
|
95 |
$this->donnees['description'] = $this->donnees['wikini']['description'];
|
99 |
$this->donnees ['description'] = $this->donnees ['wikini'] ['description'];
|
96 |
$this->donnees['titre'] = "Description collaborative";
|
100 |
$this->donnees ['titre'] = "Description collaborative";
|
97 |
$this->donnees['type'] = 'wikini';
|
101 |
$this->donnees ['type'] = 'wikini';
|
98 |
unset($this->donnees['wikini']);
|
102 |
unset ( $this->donnees ['wikini'] );
|
99 |
}
|
103 |
}
|
100 |
|
104 |
|
101 |
return $this->donnees;
|
105 |
return $this->donnees;
|
102 |
}
|
106 |
}
|
103 |
|
- |
|
104 |
private function getBaseflor() {
|
107 |
private function getBaseflor() {
|
105 |
$baseflor = array();
|
108 |
$baseflor = array ();
|
106 |
$this->informations ->setProjet('baseflor');
|
109 |
$this->informations->setProjet ( 'baseflor' );
|
107 |
$this->informations ->setBdnt($this->conteneur->getParametre('referentiel'));
|
110 |
$this->informations->setBdnt ( $this->conteneur->getParametre ( 'referentiel' ) );
|
108 |
$this->informations ->setNum_nom($this->nomCourant->getNnr());
|
111 |
$this->informations->setNum_nom ( $this->nomCourant->getNnr () );
|
109 |
$informations = $this->informations->getInformationsDescription();
|
112 |
$informations = $this->informations->getInformationsDescription ();
|
110 |
if ($informations){
|
113 |
if ($informations) {
|
111 |
$baseflor['chorologie'] = isset($informations['chorologie']) ? $informations['chorologie'] : '';
|
114 |
$baseflor ['chorologie'] = isset ( $informations ['chorologie'] ) ? $informations ['chorologie'] : '';
|
112 |
$baseflor['inflorescence'] = isset($informations['inflorescence']) ? $informations['inflorescence'] : '';
|
115 |
$baseflor ['inflorescence'] = isset ( $informations ['inflorescence'] ) ? $informations ['inflorescence'] : '';
|
113 |
$baseflor['sexualite'] = isset($informations['sexualite']) ? $informations['sexualite'] : '';
|
116 |
$baseflor ['sexualite'] = isset ( $informations ['sexualite'] ) ? $informations ['sexualite'] : '';
|
114 |
$baseflor['ordre_maturation'] = isset($informations['ordre_maturation']) ? $informations['ordre_maturation'] : '';
|
117 |
$baseflor ['ordre_maturation'] = isset ( $informations ['ordre_maturation'] ) ? $informations ['ordre_maturation'] : '';
|
115 |
$baseflor['pollinisation'] = isset($informations['pollinisation']) ? $informations['pollinisation'] : '';
|
118 |
$baseflor ['pollinisation'] = isset ( $informations ['pollinisation'] ) ? $informations ['pollinisation'] : '';
|
116 |
$baseflor['dissemination'] = isset($informations['dissemination']) ? $informations['dissemination'] : '';
|
119 |
$baseflor ['dissemination'] = isset ( $informations ['dissemination'] ) ? $informations ['dissemination'] : '';
|
117 |
$baseflor['fruit'] = isset($informations['fruit']) ? $informations['fruit'] : '';
|
120 |
$baseflor ['fruit'] = isset ( $informations ['fruit'] ) ? $informations ['fruit'] : '';
|
118 |
$baseflor['couleur_fleur'] = isset($informations['couleur_fleur']) ? $informations['couleur_fleur'] : '';
|
121 |
$baseflor ['couleur_fleur'] = isset ( $informations ['couleur_fleur'] ) ? $informations ['couleur_fleur'] : '';
|
119 |
$baseflor['macule'] = isset($informations['macule']) ? $informations['macule'] : '';
|
122 |
$baseflor ['macule'] = isset ( $informations ['macule'] ) ? $informations ['macule'] : '';
|
120 |
$baseflor['floraison'] = isset($informations['floraison']) ? self::changerFloraisonEnChaine($informations['floraison']) : '';
|
123 |
$baseflor ['floraison'] = isset ( $informations ['floraison'] ) ? self::changerFloraisonEnChaine ( $informations ['floraison'] ) : '';
|
121 |
//récupérer dans ontologies
|
124 |
// récupérer dans ontologies
|
122 |
$baseflor['type_bio'] = isset($informations['type_bio.libelle']) ? $informations['type_bio.libelle'] : '';
|
125 |
$baseflor ['type_bio'] = isset ( $informations ['type_bio.libelle'] ) ? $informations ['type_bio.libelle'] : '';
|
123 |
$baseflor['form_vegetale'] = isset($informations['form_vegetale']) ? $informations['form_vegetale'] : '';
|
126 |
$baseflor ['form_vegetale'] = isset ( $informations ['form_vegetale'] ) ? $informations ['form_vegetale'] : '';
|
124 |
$baseflor['description']=$baseflor;
|
127 |
$baseflor ['description'] = $baseflor;
|
125 |
$this->meta->setProjet('baseflor');
|
128 |
$this->meta->setProjet ( 'baseflor' );
|
126 |
$meta = $this->meta->getMetaDonnees();
|
129 |
$meta = $this->meta->getMetaDonnees ();
|
127 |
$baseflor['meta'] = $meta[0];
|
130 |
$baseflor ['meta'] = $meta [0];
|
128 |
$baseflor['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('baseflor');
|
131 |
$baseflor ['meta'] ['url'] = $this->appUrls->obtenirUrlMetaDonnees ( 'baseflor' );
|
129 |
}
|
132 |
}
|
130 |
$this->donnees['baseflor'] = $baseflor;
|
133 |
$this->donnees ['baseflor'] = $baseflor;
|
131 |
}
|
134 |
}
|
132 |
|
- |
|
133 |
static function changerFloraisonEnChaine($floraison){
|
135 |
static function changerFloraisonEnChaine($floraison) {
|
134 |
$chaine = "";
|
136 |
$chaine = "";
|
135 |
if ($floraison != ""){
|
137 |
if ($floraison != "") {
|
136 |
$mois_fleurs=preg_match('/-/',$floraison) ? preg_split('/-/',$floraison) : $floraison;
|
138 |
$mois_fleurs = preg_match ( '/-/', $floraison ) ? preg_split ( '/-/', $floraison ) : $floraison;
|
137 |
if (is_array($mois_fleurs)){
|
139 |
if (is_array ( $mois_fleurs )) {
|
138 |
$chaine = "de ".self::$mois[(int)$mois_fleurs[0]-1]." à ".self::$mois[(int)$mois_fleurs[1]-1];
|
140 |
$chaine = "de " . self::$mois [( int ) $mois_fleurs [0] - 1] . " à " . self::$mois [( int ) $mois_fleurs [1] - 1];
|
139 |
|
141 |
} else {
|
140 |
}else { $chaine = "en ".self::$mois[(int)$mois_fleurs];
|
142 |
$chaine = "en " . self::$mois [( int ) $mois_fleurs - 1];
|
141 |
}
|
143 |
}
|
142 |
}
|
144 |
}
|
143 |
return $chaine;
|
145 |
return $chaine;
|
144 |
}
|
146 |
}
|
145 |
|
- |
|
146 |
public function getUrlWikipedia() {
|
147 |
public function getUrlWikipedia() {
|
147 |
if(!isset($this->donnees['wp'])) {
|
148 |
if (! isset ( $this->donnees ['wp'] )) {
|
148 |
$this->getWikipedia();
|
149 |
$this->getWikipedia ();
|
149 |
}
|
150 |
}
|
150 |
return $this->donnees['wp'];
|
151 |
return $this->donnees ['wp'];
|
151 |
}
|
152 |
}
|
152 |
|
- |
|
153 |
public function getWikipedia() {
|
153 |
public function getWikipedia() {
|
154 |
$wp = array();
|
154 |
$wp = array ();
|
155 |
$this->textes->setProjet('wikipedia');
|
155 |
$this->textes->setProjet ( 'wikipedia' );
|
156 |
$this->textes->setId(self::getIdWp($this->nomCourant->getNomRetenu()->get('nom_sci')));
|
156 |
$this->textes->setId ( self::getIdWp ( $this->nomCourant->getNomRetenu ()->get ( 'nom_sci' ) ) );
|
157 |
$wp['titre'] = $donnees['titre'] = "Description de wikipedia";
|
157 |
$wp ['titre'] = $donnees ['titre'] = "Description de wikipedia";
|
158 |
$wp['lien'] = $this->textes->getPageUrl();
|
158 |
$wp ['lien'] = $this->textes->getPageUrl ();
|
159 |
$wp['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('wikipedia');
|
159 |
$wp ['meta'] ['url'] = $this->appUrls->obtenirUrlMetaDonnees ( 'wikipedia' );
|
160 |
$this->donnees['wp'] = $wp;
|
160 |
$this->donnees ['wp'] = $wp;
|
161 |
}
|
161 |
}
|
162 |
|
- |
|
163 |
private static function getIdWp($nomSci) {
|
162 |
private static function getIdWp($nomSci) {
|
164 |
return urlencode(str_replace(' ', '_', $nomSci));
|
163 |
return urlencode ( str_replace ( ' ', '_', $nomSci ) );
|
165 |
}
|
164 |
}
|
166 |
|
- |
|
167 |
private function getWikini() {
|
165 |
private function getWikini() {
|
168 |
$wikini = array();
|
166 |
$wikini = array ();
|
169 |
$wikini['titre'] = 'Wikini';
|
167 |
$wikini ['titre'] = 'Wikini';
|
170 |
$referentiel = $this->conteneur->getParametre('referentiel');
|
168 |
$referentiel = $this->conteneur->getParametre ( 'referentiel' );
|
171 |
$num_tax = $this->nomCourant->getNomSelectionne()->get('num_taxonomique');
|
169 |
$num_tax = $this->nomCourant->getNomSelectionne ()->get ( 'num_taxonomique' );
|
172 |
$page_wiki = $this->wikini->getPageWikiPourRefEtNumTax($referentiel, $num_tax);
|
170 |
$page_wiki = $this->wikini->getPageWikiPourRefEtNumTax ( $referentiel, $num_tax );
|
173 |
$wikini['description'] = $this->wikini->getTexteFormate($page_wiki, 'description');
|
171 |
$wikini ['description'] = $this->wikini->getTexteFormate ( $page_wiki, 'description' );
|
174 |
$this->donnees['wikini'] = $wikini;
|
172 |
$this->donnees ['wikini'] = $wikini;
|
175 |
}
|
173 |
}
|
176 |
|
- |
|
177 |
public function getLienWikini() {
|
174 |
public function getLienWikini() {
|
178 |
$referentiel = $this->conteneur->getParametre('referentiel');
|
175 |
$referentiel = $this->conteneur->getParametre ( 'referentiel' );
|
179 |
$num_tax = $this->nomCourant->getNomSelectionne()->get('num_taxonomique');
|
176 |
$num_tax = $this->nomCourant->getNomSelectionne ()->get ( 'num_taxonomique' );
|
180 |
return $this->wikini->getUrlPageWiki($referentiel, $num_tax);
|
177 |
return $this->wikini->getUrlPageWiki ( $referentiel, $num_tax );
|
181 |
}
|
178 |
}
|
182 |
|
- |
|
183 |
private function getCoste() {
|
179 |
private function getCoste() {
|
184 |
$coste = array();
|
180 |
$coste = array ();
|
185 |
$this->textes->setProjet('coste');
|
181 |
$this->textes->setProjet ( 'coste' );
|
186 |
$this->textes->setId('bdtfx.nt:'.$this->nomCourant->getNt());
|
182 |
$this->textes->setId ( 'bdtfx.nt:' . $this->nomCourant->getNt () );
|
187 |
$texte = $this->textes->getTexte();
|
183 |
$texte = $this->textes->getTexte ();
|
188 |
if (! empty($texte['resultats'])) {
|
184 |
if (! empty ( $texte ['resultats'] )) {
|
189 |
$texte = array_pop($texte['resultats']);
|
185 |
$texte = array_pop ( $texte ['resultats'] );
|
190 |
}
|
186 |
}
|
191 |
if ($texte) {
|
187 |
if ($texte) {
|
192 |
$coste['titre'] = $texte['titre'];
|
188 |
$coste ['titre'] = $texte ['titre'];
|
193 |
$coste['description'] = self::mettreEnFormeCoste($texte['texte']);
|
189 |
$coste ['description'] = self::mettreEnFormeCoste ( $texte ['texte'] );
|
194 |
}
|
190 |
}
|
195 |
$this->meta->setProjet('coste');
|
191 |
$this->meta->setProjet ( 'coste' );
|
196 |
$meta = $this->meta->getMetaDonnees();
|
192 |
$meta = $this->meta->getMetaDonnees ();
|
197 |
$coste['meta'] = $meta[0];
|
193 |
$coste ['meta'] = $meta [0];
|
198 |
$coste['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('coste');
|
194 |
$coste ['meta'] ['url'] = $this->appUrls->obtenirUrlMetaDonnees ( 'coste' );
|
199 |
$this->donnees['coste'] = $coste;
|
195 |
$this->donnees ['coste'] = $coste;
|
200 |
}
|
196 |
}
|
201 |
|
- |
|
202 |
static function mettreEnFormeCoste($texte) {
|
197 |
static function mettreEnFormeCoste($texte) {
|
203 |
$txt_fmt = array();
|
198 |
$txt_fmt = array ();
|
204 |
//decouper elements remarquables avant le texte
|
199 |
// decouper elements remarquables avant le texte
|
205 |
self::separerNomScientifique_a_NomCommun($texte, $txt_fmt);
|
200 |
self::separerNomScientifique_a_NomCommun ( $texte, $txt_fmt );
|
206 |
$texte = preg_replace('/\//','',$texte);
|
201 |
$texte = preg_replace ( '/\//', '', $texte );
|
207 |
//decouper elements remarquables après le texte
|
202 |
// decouper elements remarquables après le texte
|
208 |
self::separerEcologie_a_Usages($texte, $txt_fmt);
|
203 |
self::separerEcologie_a_Usages ( $texte, $txt_fmt );
|
209 |
//le morceau qui reste est le gros de la description
|
204 |
// le morceau qui reste est le gros de la description
|
210 |
$texte = str_replace(';','</br> -','- '.$texte);
|
205 |
$texte = str_replace ( ';', '</br> -', '- ' . $texte );
|
211 |
$texte = str_replace('–','',$texte);
|
206 |
$texte = str_replace ( '–', '', $texte );
|
212 |
$txt_fmt['texte'] = $texte;
|
207 |
$txt_fmt ['texte'] = $texte;
|
213 |
return $txt_fmt;
|
208 |
return $txt_fmt;
|
214 |
}
|
209 |
}
|
215 |
|
- |
|
216 |
|
- |
|
217 |
static function separerNomScientifique_a_NomCommun(&$txt, &$txt_fmt){
|
210 |
static function separerNomScientifique_a_NomCommun(&$txt, &$txt_fmt) {
|
218 |
if ( preg_match('/\*\*(.+)\*\*([^–]*)–/', $txt, $retour)){
|
211 |
if (preg_match ( '/\*\*(.+)\*\*([^–]*)–/', $txt, $retour )) {
|
219 |
/* !! attention on enlève un tiret cadratin – pas un trait d'union - !! */
|
212 |
/* !! attention on enlève un tiret cadratin – pas un trait d'union - !! */
|
220 |
$a_enlever = array('/–/','/\./' );
|
213 |
$a_enlever = array (
|
- |
|
214 |
'/–/',
|
- |
|
215 |
'/\./'
|
- |
|
216 |
);
|
221 |
$txt_fmt['nom_scientifique'] = preg_replace($a_enlever,'',$retour[1]);
|
217 |
$txt_fmt ['nom_scientifique'] = preg_replace ( $a_enlever, '', $retour [1] );
|
222 |
if(preg_match('/\((.+)\)/',$retour[2],$synonymes)){
|
218 |
if (preg_match ( '/\((.+)\)/', $retour [2], $synonymes )) {
|
223 |
$txt_fmt['synonymes'] = $synonymes[1];
|
219 |
$txt_fmt ['synonymes'] = $synonymes [1];
|
224 |
} else {
|
220 |
} else {
|
225 |
$txt_fmt['nom_scientifique'] .= $retour[2];
|
221 |
$txt_fmt ['nom_scientifique'] .= $retour [2];
|
226 |
}
|
222 |
}
|
227 |
$txt = str_replace($retour[0],'',$txt);
|
223 |
$txt = str_replace ( $retour [0], '', $txt );
|
228 |
}
|
224 |
}
|
229 |
/* !! attention il y a un espace avant les // du début !! */
|
225 |
/* !! attention il y a un espace avant les // du début !! */
|
230 |
if ( preg_match('/^ \/\/([^\/\/]+)\/\//', $txt, $retour)){
|
226 |
if (preg_match ( '/^ \/\/([^\/\/]+)\/\//', $txt, $retour )) {
|
231 |
$a_enlever = array('/–/','/\./' );
|
227 |
$a_enlever = array (
|
- |
|
228 |
'/–/',
|
- |
|
229 |
'/\./'
|
- |
|
230 |
);
|
232 |
$txt_fmt['nom_commun'] = preg_replace($a_enlever,'',$retour[1]);
|
231 |
$txt_fmt ['nom_commun'] = preg_replace ( $a_enlever, '', $retour [1] );
|
233 |
$txt = str_replace($retour[0],'',$txt);
|
232 |
$txt = str_replace ( $retour [0], '', $txt );
|
234 |
}
|
233 |
}
|
235 |
}
|
234 |
}
|
236 |
|
- |
|
237 |
|
- |
|
238 |
static function separerEcologie_a_Usages(&$txt, &$txt_fmt) {
|
235 |
static function separerEcologie_a_Usages(&$txt, &$txt_fmt) {
|
239 |
if (preg_match('/\.\s*([A-ZÉÀÈ].+)$/',$txt, $retour)) {
|
236 |
if (preg_match ( '/\.\s*([A-ZÉÀÈ].+)$/', $txt, $retour )) {
|
240 |
$txt_fmt['ecologie'] = $retour[1];
|
237 |
$txt_fmt ['ecologie'] = $retour [1];
|
241 |
$txt = str_replace($retour[0],'.',$txt);
|
238 |
$txt = str_replace ( $retour [0], '.', $txt );
|
242 |
if (isset($txt_fmt['ecologie']) && preg_match('/–(.+)/', $txt_fmt['ecologie'] , $retour)){
|
239 |
if (isset ( $txt_fmt ['ecologie'] ) && preg_match ( '/–(.+)/', $txt_fmt ['ecologie'], $retour )) {
|
243 |
$txt_fmt['repartition'] = $retour[1];
|
240 |
$txt_fmt ['repartition'] = $retour [1];
|
244 |
$txt_fmt['ecologie'] = str_replace($retour[0],'',$txt_fmt['ecologie']);
|
241 |
$txt_fmt ['ecologie'] = str_replace ( $retour [0], '', $txt_fmt ['ecologie'] );
|
245 |
}
|
242 |
}
|
246 |
if (isset($txt_fmt['repartition']) && preg_match('/=(.+)$/', $txt_fmt['repartition'], $retour)){
|
243 |
if (isset ( $txt_fmt ['repartition'] ) && preg_match ( '/=(.+)$/', $txt_fmt ['repartition'], $retour )) {
|
247 |
$txt_fmt['floraison'] = $retour[1];
|
244 |
$txt_fmt ['floraison'] = $retour [1];
|
248 |
$txt_fmt['repartition'] = str_replace($retour[0],'',$txt_fmt['repartition']);
|
245 |
$txt_fmt ['repartition'] = str_replace ( $retour [0], '', $txt_fmt ['repartition'] );
|
249 |
}
|
246 |
}
|
250 |
if (isset($txt_fmt['floraison']) && preg_match('/–(.+)$|\n(.+)$/',$txt_fmt['floraison'], $retour)){
|
247 |
if (isset ( $txt_fmt ['floraison'] ) && preg_match ( '/–(.+)$|\n(.+)$/', $txt_fmt ['floraison'], $retour )) {
|
251 |
$txt_fmt['usages'] = isset($retour[1]) ? $retour[1] : $retour[2];
|
248 |
$txt_fmt ['usages'] = isset ( $retour [1] ) ? $retour [1] : $retour [2];
|
252 |
$txt_fmt['floraison'] = str_replace($retour[0],'.',$txt_fmt['floraison']);
|
249 |
$txt_fmt ['floraison'] = str_replace ( $retour [0], '.', $txt_fmt ['floraison'] );
|
253 |
}
|
250 |
}
|
254 |
if (isset($txt_fmt['floraison']) && preg_match('/([Ff]l\.) (.+)/',$txt_fmt['floraison'], $retour)){
|
251 |
if (isset ( $txt_fmt ['floraison'] ) && preg_match ( '/([Ff]l\.) (.+)/', $txt_fmt ['floraison'], $retour )) {
|
255 |
$txt_fmt['floraison'] = $retour[2];
|
252 |
$txt_fmt ['floraison'] = $retour [2];
|
256 |
$txt_fmt['floraison'] = str_replace($retour[1],'',$txt_fmt['floraison']);
|
253 |
$txt_fmt ['floraison'] = str_replace ( $retour [1], '', $txt_fmt ['floraison'] );
|
257 |
}
|
254 |
}
|
258 |
if (isset($txt_fmt['floraison']) && preg_match('/([Ff]r\.) (.+)/',$txt_fmt['floraison'], $retour)){
|
255 |
if (isset ( $txt_fmt ['floraison'] ) && preg_match ( '/([Ff]r\.) (.+)/', $txt_fmt ['floraison'], $retour )) {
|
259 |
$txt_fmt['fructification'] = $retour[2];
|
256 |
$txt_fmt ['fructification'] = $retour [2];
|
260 |
$txt_fmt['floraison'] = str_replace($retour[0],'',$txt_fmt['floraison']);
|
257 |
$txt_fmt ['floraison'] = str_replace ( $retour [0], '', $txt_fmt ['floraison'] );
|
261 |
$txt_fmt['floraison'] = str_replace(',','',$txt_fmt['floraison']);
|
258 |
$txt_fmt ['floraison'] = str_replace ( ',', '', $txt_fmt ['floraison'] );
|
262 |
$txt_fmt['fructification'] = str_replace($retour[1],'',$txt_fmt['fructification']);
|
259 |
$txt_fmt ['fructification'] = str_replace ( $retour [1], '', $txt_fmt ['fructification'] );
|
263 |
$txt_fmt['fructification'] = str_replace('.','',$txt_fmt['fructification']);
|
260 |
$txt_fmt ['fructification'] = str_replace ( '.', '', $txt_fmt ['fructification'] );
|
264 |
}
|
261 |
}
|
265 |
}
|
262 |
}
|
266 |
}
|
263 |
}
|
267 |
}
|
264 |
}
|
268 |
?>
|
265 |
?>
|
269 |
|
266 |
|