and the event

git-svn-id: file:///home/shish/svn/shimmie2/trunk@242 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish 2007-07-08 19:40:14 +00:00
parent 8ad916c136
commit ffcf86df17

View file

@ -0,0 +1,20 @@
<?php
/*
* TextFormattingEvent:
* $original - for reference
* $formatted - with formatting applied
* $stripped - with formatting removed
*
*/
class TextFormattingEvent extends Event {
var $original;
var $formatted;
var $stripped;
public function TextFormattingEvent($text) {
$this->original = $text;
$this->formatted = $text;
$this->stripped = $text;
}
}
?>