tripal-2.0_pre-release.inc 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. /**
  3. * @file
  4. * Wrappers for functions created for Tripal 2 whose names were changed before release
  5. */
  6. /**
  7. * This function is a wrapper for adding fields to an existing form for managing properties.
  8. * Many of the chado tables have a corresponding 'prop' table (e.g. analysisprop, contactprop,
  9. * organismprop, etc) and those prop tables all have the same schema. Use this function
  10. * to add all the necessary components to a form for allowing the user to add/edit properties to
  11. * a given record. To retreive properties in hook_insert or hook_update of a node form use
  12. * use the function tripal_core_properties_form_retreive().
  13. *
  14. * @param $form
  15. * The Drupal form array into which the properties elements will be added
  16. * @param $form_state
  17. * The corresponding form_state array for the form
  18. * @param $prop_table
  19. * The name of the property table (e.g. anlaysisprop, contactprop)
  20. * @param $id_field
  21. * The name of the ID field in the property table (e.g. analysis_id, contact_id)
  22. * @param $cv_name
  23. * The name of the controlled vocabulary that these properties are derived from
  24. * @param $available_props
  25. * An array of properties to inclde in the properties drop down. This array should
  26. * have cvterm_id's as the key and the cvterm name as the value
  27. * @param $id
  28. * The current base table ID. For example, if the property table is analysisprop then the
  29. * value should be that of the analysis_id. If the property table is contactprop then the
  30. * value should be that of the contact_id. This is the record from which currently assigned
  31. * properties will be retrieved.
  32. * @param $exclude
  33. * An optional array of cvterms to exclude when retreiving terms already saved in the database.
  34. * Use this array when properties are present but should be handled elsewhere.
  35. * For example, for contacts, the description field is stored as a property because
  36. * the actual field is only 255 characters. The 'contact_description' therefore should
  37. * not be shown in the list of properties, even if present, because it is handled by
  38. * a different form element.
  39. * @param $include
  40. * An optional array of terms to pre-populate in the form. This argument can be used to
  41. * add a default set of pre-populated properties regardless if they exist in the database
  42. * or not. The array should be of the following form:
  43. * array(
  44. * array('cvterm' => $obj1, 'value' => $val1),
  45. * array('cvterm' => $obj2, 'value' => $val2),
  46. * ... etc
  47. * );
  48. * The 'cvterm' key should have as a value an object with these properties: 'name', 'cvterm_id', 'definition'.
  49. * @param $instructions
  50. * An optional additional set of instructions for the form properties.
  51. * @param $fset_title
  52. * A title for the property field set. The default is 'Additional Details'.
  53. * @ingroup tripal_properties_api
  54. */
  55. function tripal_core_properties_form(&$form, &$form_state, $prop_table, $id_field, $cv_name,
  56. $available_props, $id = NULL, $exclude = array(), $include = array(), $instructions = '',
  57. $fset_title = 'Additional Details') {
  58. // $available_props is now created by the form based on the cv
  59. // $exclude and $include are not yet supported
  60. $details = array(
  61. 'property_table' => $prop_table,
  62. 'base_foreign_key' => $id_field,
  63. 'base_key_value' => $id,
  64. 'cv_name' => $cv_name,
  65. 'fieldset_title' => $fset_title,
  66. 'additional_instructions' => $instructions
  67. );
  68. tripal_api_chado_node_properties_form($form, $form_state, $details);
  69. }
  70. /**
  71. * This function is used in a hook_insert, hook_update for a node form
  72. * when the properties form has been added to the form. It retrieves all of the properties
  73. * and returns them in an array of the format:
  74. *
  75. * $properties[<property name>][<rank>] = <value>
  76. *
  77. * This array can then be used for inserting or updating properties using the API call
  78. * tripal_hook_insert_property()
  79. *
  80. * @param $node
  81. * @param $cvname
  82. * The name of the controlled vocabulary that the properties belong to
  83. *
  84. * @return
  85. * A properties array
  86. *
  87. * @ingroup tripal_properties_api
  88. */
  89. function tripal_core_properties_form_retreive($node, $cv_name) {
  90. return tripal_api_chado_node_properties_form_retreive($node);
  91. }