tripal_api.module 557 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. *
  4. */
  5. require_once 'chado_node_api/tripal_api.chado_node.properties.inc';
  6. // DEPRECATED Function Wrappers
  7. require_once 'DEPRECATED/tripal-2.0_pre-release.inc';
  8. /**
  9. * Implements hook_theme().
  10. * Registers template files/functions used by this module.
  11. *
  12. * @ingroup tripal_core
  13. */
  14. function tripal_api_theme($existing, $type, $theme, $path) {
  15. return array(
  16. 'tripal_api_chado_node_properties_form_table' => array(
  17. 'function' => 'theme_tripal_api_chado_node_properties_form_table',
  18. 'render element' => 'element',
  19. ),
  20. );
  21. }