| 12345678910111213141516171819202122232425262728293031 | 
							- <?php
 
- /**
 
-  *
 
-  */
 
- // Chado Query API: Functions to query (select/insert/update/delete) from chado
 
- require_once 'chado_query_api/tripal_api.chado_query.manage_properties.inc';
 
- // Chado Node API: Functions to help standardize creating nodes for chado tables
 
- require_once 'chado_node_api/tripal_api.chado_node.properties.inc';
 
- require_once 'chado_node_api/tripal_api.chado_node.references.inc';
 
- require_once 'chado_node_api/tripal_api.chado_node.relationships.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',
 
-     ),
 
-   );
 
- }
 
 
  |