Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 451 Rev 463
Line 125... Line 125...
125
		$min = $this->valeurs_champs[$champs."_min"];
125
		$min = $this->valeurs_champs[$champs."_min"];
126
		$max = $this->valeurs_champs[$champs."_max"];
126
		$max = $this->valeurs_champs[$champs."_max"];
127
		if ($min != $max){
127
		if ($min != $max){
128
			$valeurMin = $this->recupererOntologies($min, $champs );
128
			$valeurMin = $this->recupererOntologies($min, $champs );
129
			$valeurMax = $this->recupererOntologies($max, $champs );
129
			$valeurMax = $this->recupererOntologies($max, $champs );
-
 
130
			$valeurMin = $this->traiterIntermediaires($valeurMin->nom, $champs, $champs.'_min');
-
 
131
			$valeurMax = $this->traiterIntermediaires($valeurMax->nom, $champs, $champs.'_max');
130
			$case->setAttribute('title',"entre {$valeurMin->nom}($min) et {$valeurMax->nom}($max) " );
132
			$case->setAttribute('title',"de $min: $valeurMin à $max: $valeurMax " );
131
		} else {
133
		} else {
132
			$valeurMin = $this->recupererOntologies($min, $champs );
134
			$valeurMin = $this->recupererOntologies($min, $champs );
-
 
135
			$valeurMin = $this->traiterIntermediaires($valeurMin->nom, $champs, $champs.'_min');
133
			$case->setAttribute('title',"{$valeurMin->nom}($min)" );
136
			$case->setAttribute('title',"$min: $valeurMin" );
134
		}
137
		}
135
	}
138
	}
Line 136... Line 139...
136
	
139