* Displays an API page for a topic/group, with list of items in that group.
 *
 * Available variables:
 * - $alternatives: List of alternate versions (branches) of this group.
 * - $documentation: Documentation from the comment header of the constant.
 * - $see: Related API objects.
 * - $related_topics: Related topics documentation.
 * - $objects: Formatted list of member objects, if any.
 * - $defined: HTML reference to file that defines this group.
 *
 * @ingroup themeable
 */
?>

<?php 
print _db_api_display_documentation($object, $documentation);
?>

<?php 
print _db_api_display_see_also($see);
?>

<?php 
if (!empty($related_topics)) {
    ?>
<h3><?php 
    print t('Parent topics');
    ?>
</h3>
<?php 
    print $related_topics;
  </tbody>
</table>

<?php 
print _db_api_display_documentation($object, $documentation);
?>

<?php 
if (!empty($parameters)) {
    ?>
<h3><?php 
    print t('Parameters');
    ?>
</h3>
<?php 
    print _db_api_display_documentation($object, $parameters);
}
?>

<?php 
if (!empty($return)) {
    ?>
<h3><?php 
    print t('Return value');
    ?>
</h3>
<?php 
    print $return;
}
?>