function chado_featuremap_view

1.x tripal_featuremap.module chado_featuremap_view($node, $teaser = FALSE, $page = FALSE)

This function customizes the view of the chado_featuremap node. It allows us to generate the markup. This function is required for node [Preview]

Related topics

File

tripal_featuremap/tripal_featuremap.module, line 591

Code

function chado_featuremap_view($node, $teaser = FALSE, $page = FALSE) {
  // use drupal's default node view:
  if (!$teaser) {

    $node = node_prepare($node, $teaser);
  }
  return $node;
}