<h3><?php 
    print t('Related topics');
    ?>
</h3>
  <?php 
    print $related_topics;
}
?>

<?php 
if ($namespace) {
    ?>
  <h3><?php 
    print t('Namespace');
    ?>
</h3>
  <?php 
    print $namespace;
}
?>

<h3><?php 
print t('Source');
?>
 <?php 
print $defined;
?>
</h3>
<?php 
print _db_api_display_code($object, $code, FALSE);
?>

<h3><?php 
print t('Class');
?>
</h3>
<?php 
print $class;
?>

<?php 
if ($tags) {
    ?>
     <h3><?php 
    print t('Tags');
    ?>
</h3>
<?php 
    print $tags;
}
?>

<?php 
foreach ($call_links as $link) {
    print $link;
}
?>

<?php 
print _db_api_display_code($object, $code);