Announcement.php 0000644 0077060 0077060 00000001006 10526173576 014300 0 ustar wheeler8 wheeler8 <?php
class Announcement extends HtmlFragment {
var $str, $id;
function Announcement($str, $id) {
$this->str = $str;
$this->id = $id;
}
function toStr() {
$s .= "<table class=message cellspacing=0 cellpadding=2 "
. "width=". PAGE_WIDTH .">"
. "<td class=message align=center width=". PAGE_WIDTH .">"
. "<span id=blinker_" . $this->id . ">"
. $this->str ."</span>"
. " </td>"
. "</tr></table>";
return $s;
}
}
?>