Rev 671 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
class TestCreationDossier {
var $config;
public function __construct($config) {
$this->config = $config;
}
public function getRessource() {
$id_nouvelle_image = 95001;
$format = 'XL';
$manipulateurImage = new ImageRecreation($this->config);
$fichier_stocke = $manipulateurImage->creerSiNecessaireEtRenvoyerCheminStockageFichierPourIdEtFormat($id_nouvelle_image, $format);
echo $fichier_stocke;
}
}
?>