123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- ?>
- <div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
- <?php print render($title_prefix); ?>
- <?php if (!$page): ?>
- <h2<?php print $title_attributes; ?>>
- <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
- </h2>
- <?php endif; ?>
- <?php print render($title_suffix); ?>
- <div class="content clearfix"<?php print $content_attributes; ?>>
- <?php
- // We hide the comments and links now so that we can render them later.
- hide($content['comments']);
- hide($content['links']);
- ?>
- <table>
- <tr><th>Human-Readable Name</th><td><?php print $node->db_name; ?></td></tr>
- <tr><th>Database Path</th><td><?php print $node->db_path; ?></td></tr>
- <tr><th>Database Type</th><td><?php print $node->db_dbtype; ?></td></tr>
- <?php if ($node->linkout->none === FALSE ) { ?>
- <tr><th>FASTA Header Format</th><td><?php print $node->linkout->regex_type; ?></td></tr>
- <tr><th>External Database</th><td><?php print $node->linkout->db_id->name; ?></td></tr>
- <tr><th>RegEx</th><td><?php print $node->linkout->regex; ?></td></tr>
- <tr><th>Link-out Type</th><td><?php print $node->linkout->type; ?></td></tr>
- <?php } ?>
- </table>
- <?php
-
- print render($content);
- ?>
- </div>
- </div>
|