Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3057 Rev 3459
Line 487... Line 487...
487
		return $ratio_compression;
487
		return $ratio_compression;
488
	}
488
	}
Line 489... Line 489...
489
 
489
 
490
	public function convertirIdBddVersNomFichier($id, $format, $extension = 'jpg') {
490
	public function convertirIdBddVersNomFichier($id, $format, $extension = 'jpg') {
491
		// creation du format original
491
		// creation du format original
492
		$id_avec_zeros = sprintf('%09s', $id) ;
492
		$id_avec_zeros = sprintf('%09s', $id);
-
 
493
		$id_avec_zeros_underscores = wordwrap($id_avec_zeros, 3 , '_', true);
-
 
494
 
-
 
495
		// déterminationnage de l'extension
-
 
496
		$path = $this->obtenirDossierPourFormat($id, $format);
-
 
497
		foreach(['jpg', 'JPG', 'png', 'PNG'] as $ext) {
-
 
498
			if (file_exists($path.'/'.$id_avec_zeros_underscores.'_'.$format.'.'.$ext)) {
-
 
499
				$extension = $ext;
-
 
500
				break;
-
 
501
			}
Line 493... Line 502...
493
		$id_avec_zeros_underscores = wordwrap($id_avec_zeros, 3 , '_', true) ;
502
		}
Line 494... Line 503...
494
 
503
 
495
		$nom_fichier = $id_avec_zeros_underscores.'_'.$format.'.'.$extension;
504
		$nom_fichier = $id_avec_zeros_underscores.'_'.$format.'.'.$extension;