a5a6f4781c
git-svn-id: file:///home/shish/svn/shimmie2/trunk@623 7f39781d-f577-437e-ae19-be835c7a54ca
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
/*
|
|
* ThumbnailGenerationEvent:
|
|
* Request a thumb be made for an image
|
|
*/
|
|
class ThumbnailGenerationEvent extends Event {
|
|
var $hash;
|
|
var $type;
|
|
|
|
public function ThumbnailGenerationEvent($hash, $type) {
|
|
$this->hash = $hash;
|
|
$this->type = $type;
|
|
}
|
|
}
|
|
?>
|