X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fvalidations%2Fphotos.inc.php;h=60b6ae162f237870b8267cddaf975d6c90f784e3;hb=71db1043b2c252f7c836bc41ddcc7b009dda908b;hp=2a2fec755f73e20b463e9691276631fbc3f3b59c;hpb=8d84c630f353ef0534e02325507ed35cc2f0d28f;p=platal.git diff --git a/include/validations/photos.inc.php b/include/validations/photos.inc.php index 2a2fec7..60b6ae1 100644 --- a/include/validations/photos.inc.php +++ b/include/validations/photos.inc.php @@ -1,6 +1,6 @@ read($upload); } @@ -56,7 +56,7 @@ class PhotoReq extends Validate { $this->valid = $upload->resizeImage(240, 300, 160, 0, SIZE_MAX); if (!$this->valid) { - $this->trigError('Le fichier que tu as transmis n\'est pas une image valide, ou est trop gros pour être traité'); + $this->trigError('Le fichier que tu as transmis n\'est pas une image valide, ou est trop gros pour être traité.'); } $this->data = $upload->getContents(); list($this->x, $this->y, $this->mimetype) = $upload->imageInfo(); @@ -64,7 +64,7 @@ class PhotoReq extends Validate } // }}} - // {{{ function isValid() + // {{{ function isValid() public function isValid() { @@ -74,9 +74,9 @@ class PhotoReq extends Validate // }}} // {{{ function get_request() - static public function get_request($uid) + static public function get_request($pid) { - return parent::get_typed_request($uid, 'photo'); + return parent::get_typed_request($pid, 'photo'); } // }}} @@ -103,7 +103,7 @@ class PhotoReq extends Validate if (isset($_FILES['userfile'])) { $upload =& PlUpload::get($_FILES['userfile'], S::user()->login(), 'photo'); if (!$upload) { - $this->trigError('Une erreur est survenue lors du téléchargement du fichier'); + $this->trigError('Une erreur est survenue lors du téléchargement du fichier.'); return false; } $this->read($upload); @@ -137,11 +137,10 @@ class PhotoReq extends Validate public function commit() { - require_once 'notifs.inc.php'; - XDB::execute('REPLACE INTO photo (uid, attachmime, attach, x, y) + XDB::execute('REPLACE INTO profile_photos (pid, attachmime, attach, x, y) VALUES ({?},{?},{?},{?},{?})', - $this->user->id(), $this->mimetype, $this->data, $this->x, $this->y); - register_watch_op($this->user->id(), WATCH_FICHE, '', 'photo'); + $this->profile->id(), $this->mimetype, $this->data, $this->x, $this->y); + return true; }