Override the behavior of title(). Get the title of the node.
Overrides Numeric::title
function title() {
// There might be no valid argument.
if ($this->argument) {
$term = taxonomy_term_load($this->argument);
if (!empty($term)) {
return check_plain($term
->label());
}
}
// TODO review text
return t('No name');
}