function taxonomy_test_entity_view

7.x taxonomy_test.module taxonomy_test_entity_view($entity, $type, $view_mode, $langcode)

Implements hook_entity_view().

File

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

Code

function taxonomy_test_entity_view($entity, $type, $view_mode, $langcode) {
  if ($type == 'taxonomy_term' && $view_mode == 'full') {
    $entity->content['taxonomy_test_entity_view_check'] = array(
      '#prefix' => '<div>',
      '#markup' => t('The antonym is %antonym', array('%antonym' => $entity->antonym)),
      '#suffix' => '</div>',
      '#weight' => 20,
    );
  }
}