12345678910111213141516171819202122232425 |
- <?php
- /**
- *
- */
- require_once 'chado_node_api/tripal_api.chado_node.properties.inc';
- // DEPRECATED Function Wrappers
- require_once 'DEPRECATED/tripal-2.0_pre-release.inc';
- /**
- * Implements hook_theme().
- * Registers template files/functions used by this module.
- *
- * @ingroup tripal_core
- */
- function tripal_api_theme($existing, $type, $theme, $path) {
- return array(
- 'tripal_api_chado_node_properties_form_table' => array(
- 'function' => 'theme_tripal_api_chado_node_properties_form_table',
- 'render element' => 'element',
- ),
- );
- }
|