git-svn-id: file:///home/shish/svn/shimmie2/trunk@623 7f39781d-f577-437e-ae19-be835c7a54ca
17 lines
258 B
PHP
17 lines
258 B
PHP
<?php
|
|
/*
|
|
* ImageAdditionEvent:
|
|
*
|
|
* An image is being added to the database
|
|
*/
|
|
class ImageAdditionEvent extends Event {
|
|
var $image;
|
|
var $user;
|
|
|
|
public function ImageAdditionEvent($user, $image) {
|
|
$this->image = $image;
|
|
$this->user = $user;
|
|
}
|
|
}
|
|
?>
|