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/sourceset.event.php
shish f36c783868 source url editor
git-svn-id: file:///home/shish/svn/shimmie2/trunk@412 7f39781d-f577-437e-ae19-be835c7a54ca
2007-08-01 16:58:50 +00:00

17 lines
251 B
PHP

<?php
/*
* SourceSetEvent:
* $image_id
* $source
*
*/
class SourceSetEvent extends Event {
var $image_id;
var $source;
public function SourceSetEvent($image_id, $source) {
$this->image_id = $image_id;
$this->source = $source;
}
}
?>