Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1924 Rev 2371
Line 12... Line 12...
12
 * @version $Id$
12
 * @version $Id$
13
 * @copyright © 2013, Tela-Botanica
13
 * @copyright © 2013, Tela-Botanica
14
 */
14
 */
15
class CelWidgetUploadImageTemp extends Cel  {
15
class CelWidgetUploadImageTemp extends Cel  {
Line 16... Line -...
16
 
-
 
17
	protected $projet = '';
-
 
18
 
16
 
19
	public function createElement($donnees) {
17
	public function createElement($donnees) {
20
		$image = $_FILES['fichier']; // chaudrépare
-
 
21
		if (isset($_GET['projet'])) {
-
 
22
			$this->projet = $_GET['projet'];
-
 
23
		}
18
		$image = $_FILES['fichier']; // chaudrépare
24
		$retour = $this->enregistrerImageTemporaire($image);
19
		$retour = $this->enregistrerImageTemporaire($image);
25
		$this->formaterRetourAvecSquelette($retour);
20
		$this->formaterRetourAvecSquelette($retour);
Line 26... Line 21...
26
	}
21
	}