123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- /**
- * Implements hook_chado_library_schema()
- * Purpose: To add descriptions and foreign keys to default table description
- * Note: This array will be merged with the array from all other implementations
- *
- * @return
- * Array describing the library table
- *
- * @ingroup tripal_library
- */
- function tripal_library_chado_library_schema() {
- $description = array();
-
- // Default table description in tripal_core.schema.api.inc: tripal_core_chado_feature_schema()
- $description['foreign keys']['organism'] = array(
- 'table' => 'organism',
- 'columns' => array(
- 'organism_id' => 'organism_id',
- ),
- );
-
- $description['foreign keys']['cvterm'] = array(
- 'table' => 'cvterm',
- 'columns' => array(
- 'type_id' => 'cvterm_id',
- ),
- );
-
- $referring_tables = array(
- 'library_cvterm',
- 'library_feature',
- 'library_pub',
- 'library_synonym',
- 'libraryprop'
- );
- $description['referring_tables'] = $referring_tables;
-
- return $description;
- }
- /**
- * Implements hook_chado_library_feature_schema()
- * Purpose: To add descriptions and foreign keys to default table description
- * Note: This array will be merged with the array from all other implementations
- *
- * @return
- * Array describing the library_feature table
- *
- * @ingroup tripal_library
- */
- function tripal_library_chado_library_feature_schema() {
- $description = array();
-
- // Default table description in tripal_core.schema.api.inc: tripal_core_chado_library_feature_schema()
- $description['foreign keys']['library'] = array(
- 'table' => 'library',
- 'columns' => array(
- 'library_id' => 'library_id',
- ),
- );
-
- $description['foreign keys']['feature'] = array(
- 'table' => 'feature',
- 'columns' => array(
- 'feature_id' => 'feature_id',
- ),
- );
-
- return $description;
- }
- /**
- * Implements hook_chado_libraryprop_schema()
- * Purpose: To add descriptions and foreign keys to default table description
- * Note: This array will be merged with the array from all other implementations
- *
- * @return
- * Array describing the libraryprop table
- *
- * @ingroup tripal_library
- */
- function tripal_library_chado_libraryprop_schema() {
- $description = array();
-
- // Default table description in tripal_core.schema.api.inc: tripal_core_chado_library_feature_schema()
- $description['foreign keys']['library'] = array(
- 'table' => 'library',
- 'columns' => array(
- 'library_id' => 'library_id',
- ),
- );
-
- $description['foreign keys']['cvterm'] = array(
- 'table' => 'cvterm',
- 'columns' => array(
- 'type_id' => 'cvterm_id',
- ),
- );
-
- return $description;
- }
|