fembooru/core/event.class.php
shish c1dd2b6009 better variable names
git-svn-id: file:///home/shish/svn/shimmie2/trunk@270 7f39781d-f577-437e-ae19-be835c7a54ca
2007-07-12 08:50:32 +00:00

16 lines
203 B
PHP

<?php
/*
* Event:
* generic parent class
*/
class Event {
var $vetoed = false;
var $veto_reason;
public function veto($reason="") {
$this->vetoed = true;
$this->veto_reason = $reason;
}
}
?>