function taxonomy_test_get_antonym

7.x taxonomy_test.module taxonomy_test_get_antonym($tid)

Return the antonym of the given term ID.

2 calls to taxonomy_test_get_antonym()
taxonomy_test_form_alter in drupal-7.x/modules/simpletest/tests/taxonomy_test.module
Implements hook_form_alter().
taxonomy_test_taxonomy_term_load in drupal-7.x/modules/simpletest/tests/taxonomy_test.module
Implements hook_taxonomy_term_load().

File

drupal-7.x/modules/simpletest/tests/taxonomy_test.module, line 105
Test module for Taxonomy hooks and functions not used in core.

Code

function taxonomy_test_get_antonym($tid) {
  return db_select('taxonomy_term_antonym', 'ta')
    ->fields('ta', array('name'))
    ->condition('tid', $tid)
    ->execute()
    ->fetchField();
}