function taxonomy_test_taxonomy_term_view

7.x taxonomy_test.module taxonomy_test_taxonomy_term_view($term, $view_mode, $langcode)

Implements hook_taxonomy_term_view().

File

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

Code

function taxonomy_test_taxonomy_term_view($term, $view_mode, $langcode) {
  if ($view_mode == 'full') {
    $term->content['taxonomy_test_term_view_check'] = array(
      '#prefix' => '<div>',
      '#markup' => t('The antonym is %antonym', array('%antonym' => $term->antonym)),
      '#suffix' => '</div>',
      '#weight' => 10,
    );
  }
}