Subversion Repositories eFlore/Applications.cel

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
671 jpm 1
<?php
2
class TestCreationDossier {
3
 
4
 
5
	var $config;
6
 
7
	public function __construct($config) {
8
		$this->config = $config;
9
	}
10
 
11
 
12
	public function getRessource() {
13
		$id_nouvelle_image = 95001;
14
		$format = 'XL';
15
		$manipulateurImage = new ImageRecreation($this->config);
16
		$fichier_stocke = $manipulateurImage->creerSiNecessaireEtRenvoyerCheminStockageFichierPourIdEtFormat($id_nouvelle_image, $format);
17
		echo $fichier_stocke;
18
 	}
19
}
20
?>