taxonomy_term

<?php
$view
= $GLOBALS['current_view'];
$args = $view->args;
print
'<br/>args-0 :' .$args[0];
$terms = taxonomy_get_term($args[0]);
echo
"<xmp>";
print_r($terms);
echo
"</xmp>";
print
'Sorry, there is no content yet tagged for the '. $terms->name .' region. Consider <a href="/node/add/story">submitting</a> an article.'
?>


<?php
$view
= $GLOBALS['current_view'];
$args = $view->args;
$terms = taxonomy_get_term($args[0]);
print
'Sorry, there is no content yet tagged for the '. $terms->name .' region. Consider <a href="/node/add/story">submitting</a> an article.';
?>


<?php
global $current_view;
$termid= $current_view->args[0];
$term = taxonomy_get_term($termid);
print
'Sorry, there is no content yet tagged for the '. $term->name .' region. Consider <a href="/node/add/story">submitting</a> an article.'
?>