tripal_jbrowse.module 488 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. * Core functions of this module.
  5. */
  6. /**
  7. * Implements hook_theme().
  8. */
  9. function tripal_jbrowse_theme($existing, $type, $theme, $path) {
  10. $items = array(
  11. 'node__jbrowse_instance' => array(
  12. // Don't specify the path in the template name.
  13. // Unless you have your template inside a directory within this module.
  14. 'template' => 'theme/node--jbrowse-instance',
  15. 'variables' => array('node' => (object)array()),
  16. ),
  17. );
  18. return $items;
  19. }