summaryrefslogtreecommitdiff
path: root/demos/blog-tutorial/protected/common/NoteBox.php
blob: 90d5faab1c3d6819a3347470ab485003a71cb8ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class NoteBox extends TControl
{
	public function render($writer)
	{
		$writer->write("<div class=\"note\"><b class=\"tip\">Note:</b>\n");
		$body=$this->renderChildren($writer);
		$writer->write("</div>");
	}
}

?>