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/events/textformatting.event.php
shish ffcf86df17 and the event
git-svn-id: file:///home/shish/svn/shimmie2/trunk@242 7f39781d-f577-437e-ae19-be835c7a54ca
2007-07-08 19:40:14 +00:00

20 lines
386 B
PHP

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