7161656063
git-svn-id: file:///home/shish/svn/shimmie2/trunk@1 7f39781d-f577-437e-ae19-be835c7a54ca
17 lines
313 B
PHP
17 lines
313 B
PHP
<?php
|
|
/*
|
|
* ImageDeletionEvent:
|
|
* $image_id
|
|
*
|
|
* An image is being deleted. Used by things like tags
|
|
* and comments handlers to clean out related rows in
|
|
* their tables
|
|
*/
|
|
class ImageDeletionEvent extends Event {
|
|
var $image;
|
|
|
|
public function ImageDeletionEvent($image) {
|
|
$this->image = $image;
|
|
}
|
|
}
|
|
?>
|