c1dd2b6009
git-svn-id: file:///home/shish/svn/shimmie2/trunk@270 7f39781d-f577-437e-ae19-be835c7a54ca
15 lines
203 B
PHP
15 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;
|
|
}
|
|
}
|
|
?>
|