You are here

function _taxonomy_title_get_title in Taxonomy Title 5

2 calls to _taxonomy_title_get_title()
taxonomy_title_form_alter in ./taxonomy_title.module
Implementation of hook_form_alter()
_phptemplate_variables in ./template.php
Override or insert PHPTemplate variables into the templates.

File

./taxonomy_title.module, line 63

Code

function _taxonomy_title_get_title($tid) {
  $title = db_result(db_query('SELECT title FROM {taxonomy_title} WHERE tid = %d', $tid));
  return $title;
}