Subversion Repositories eFlore/Applications.cel

Rev

Rev 3061 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3061 Rev 3076
Line 93... Line 93...
93
		return $retour;
93
		return $retour;
94
	}
94
	}
Line 95... Line 95...
95
 
95
 
96
	protected function protegerTableau(Array $tableau) {
96
	protected function protegerTableau(Array $tableau) {
-
 
97
		foreach ($tableau as $id => $val) {
-
 
98
			if ($val === null) {
-
 
99
				$tableau[$id] = 'NULL';
97
		foreach ($tableau as $id => $val) {
100
			} else {
-
 
101
				$tableau[$id] = Cel::db()->proteger($val);
98
			$tableau[$id] = Cel::db()->proteger($val);
102
			}
99
		}
103
		}
100
		return $tableau;
104
		return $tableau;
Line 101... Line 105...
101
	}
105
	}
Line 591... Line 595...
591
		}
595
		}
592
		return $infos;
596
		return $infos;
593
	}
597
	}
Line 594... Line 598...
594
	
598
	
595
	public function formaterZoneGeoEtCodePourAffichage($obs) {
599
	public function formaterZoneGeoEtCodePourAffichage($obs) {
596
		$code_lieu = self::convertirCodeZoneGeoVersCodeInsee($obs['ce_zone_geo']);
600
		$code_lieu = self::convertirCodeZoneGeoVersCodeInsee($obs['ce_zone_geo']);
597
		if(empty($code_lieu) && !empty($obs['pays'])) {
601
		if(empty($code_lieu) && !empty($obs['pays'])) {
598
			$code_lieu = $obs['pays'];
602
			$code_lieu = $obs['pays'];
Line 599... Line 603...
599
		}
603
		}
600
		
604
		
601
		if(!empty(trim($obs['zone_geo'])) && !empty(trim($code_lieu))) {
605
		if(!empty(trim($obs['zone_geo'])) && !empty(trim($code_lieu))) {