Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3667 Rev 3787
Line 501... Line 501...
501
		$id_avec_zeros = sprintf('%09s', $id);
501
		$id_avec_zeros = sprintf('%09s', $id);
502
		$id_avec_zeros_underscores = wordwrap($id_avec_zeros, 3 , '_', true);
502
		$id_avec_zeros_underscores = wordwrap($id_avec_zeros, 3 , '_', true);
Line 503... Line 503...
503
 
503
 
504
		// déterminationnage de l'extension
504
		// déterminationnage de l'extension
505
		$path = $this->obtenirDossierPourFormat($id, $format);
505
		$path = $this->obtenirDossierPourFormat($id, $format);
506
		foreach(['jpg', 'JPG', 'png', 'PNG'] as $ext) {
506
		foreach(['jpg', 'JPG', 'jpeg', 'JPEG', 'png', 'PNG'] as $ext) {
507
			if (file_exists($path.'/'.$id_avec_zeros_underscores.'_'.$format.'.'.$ext)) {
507
			if (file_exists($path.'/'.$id_avec_zeros_underscores.'_'.$format.'.'.$ext)) {
508
				$extension = $ext;
508
				$extension = $ext;
509
				break;
509
				break;
510
			}
510
			}