Subversion Repositories eFlore/Applications.del

Rev

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

Rev 2203 Rev 2213
Line 544... Line 544...
544
		return $intituleUtilisateur;
544
		return $intituleUtilisateur;
545
	}
545
	}
Line 546... Line 546...
546
 
546
 
547
	protected function convertirCodeZoneGeoVersDepartement($code_zone_geo) {
547
	protected function convertirCodeZoneGeoVersDepartement($code_zone_geo) {
548
		$code_departement = '';
548
		$code_departement = '';
549
		if (preg_match('/^([0-9]{2})[0-9]{3}$/', $code_zone_geo, $match)) {
549
		if (preg_match('/^INSEE-C:([0-9]{2})[0-9]{3}$/', $code_zone_geo, $match)) {
550
			$code_departement = $match[1];
550
			$code_departement = $match[1];
551
		}
551
		}
552
		return $code_departement;
552
		return $code_departement;