Andy C,
I think this will work:
if( ! $this->template_engine->assigned( 'tags' ) ) {
$tags = array_filter( Tags::get(), create_function( '$tag', 'return
( Posts::count_by_tag( $tag->tag_text, "published" ) > 0);' ) );
$this->assign('tags', $tags);
}
Rick