fembooru/core/event.class.php
shish b8b968ab56 ability to veto events
git-svn-id: file:///home/shish/svn/shimmie2/trunk@268 7f39781d-f577-437e-ae19-be835c7a54ca
2007-07-12 08:30:51 +00:00

14 lines
140 B
PHP

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