00001 <?
00009 abstract class HTMLTemplate extends BaseTemplate
00010 {
00014 public function drawStatus()
00015 {
00016
00017 $status = $this->object->getStatus();
00018 if (count($status))
00019 {
00020 foreach ($status AS $key => $msg)
00021 echo "<div id=\"status-$key\" class=\"BaseStatus\">$msg</div>\n";
00022 }
00023 }
00024
00028 public function drawError()
00029 {
00030
00031 $error = $this->object->getError();
00032 echo "<div class=\"BaseError\">$error</div>\n";
00033 }
00034 }
00035 ?>