fembooru/core/events/thumbnailgeneration.event.php

16 lines
266 B
PHP
Raw Normal View History

<?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;
}
}
?>