trimTag($tag_name,32); $tag_html .= "
"." ".$tag_trunc."". "
"; } $url_more = make_link("about/tagger"); $html = <<Collapse this block to hide Tagger.

Use

Tagger


$tag_html
EOD; $page->add_block( new Block("Tagger", "".$html, "left", 0)); } public function trimTag($s,$len=80) { if(strlen($s) > $len) { $s = substr($s, 0,$len-1); $s = substr($s,0, strrpos($s,'_'))."..."; } return $s; } public function show_about ($event) { global $page; $html = <<Author Erik Youngren (Artanis) artanis.00@gmail.com

Use

EOD; $page->add_block( new Block("About Tagger", $html,"main")); } } ?>