This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/core/events/uploadingimage.event.php
shish 5c73eca9ed this fixes things :3
git-svn-id: file:///home/shish/svn/shimmie2/trunk@487 7f39781d-f577-437e-ae19-be835c7a54ca
2007-08-27 23:52:33 +00:00

17 lines
264 B
PHP

<?php
/*
* UploadingImageEvent:
* $image_id
*
* An image is being uploaded.
*/
class UploadingImageEvent extends Event {
var $image;
var $user;
public function UploadingImageEvent($user, $image) {
$this->image = $image;
$this->user = $user;
}
}
?>