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/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

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