tripal_featuremap.api.inc 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * @file
  4. * @todo Add file header description
  5. */
  6. /**
  7. * @defgroup tripal_featuremap_api Library Module API
  8. * @ingroup tripal_api
  9. * @ingroup tripal_featuremap
  10. */
  11. /**
  12. * Implements hook_chado_schema_v1_11_table()
  13. * Purpose: To add descriptions and foreign keys to default table description
  14. * Note: This array will be merged with the array from all other implementations
  15. *
  16. * @return
  17. * Array describing the map table
  18. *
  19. * @ingroup tripal_schema_api
  20. */
  21. function tripal_featuremap_chado_schema_v1_11_map() {
  22. $description = array();
  23. $referring_tables = array(
  24. );
  25. $description['referring_tables'] = $referring_tables;
  26. return $description;
  27. }
  28. /**
  29. * Implements hook_chado_schema_v1_2_table()
  30. * Purpose: To add descriptions and foreign keys to default table description
  31. * Note: This array will be merged with the array from all other implementations
  32. *
  33. * @return
  34. * Array describing the map table
  35. *
  36. * @ingroup tripal_schema_api
  37. */
  38. function tripal_featuremap_chado_schema_v1_2_map() {
  39. $description = array();
  40. $referring_tables = array(
  41. );
  42. $description['referring_tables'] = $referring_tables;
  43. return $description;
  44. }