chado_linker__cvterm_adder.inc 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <?php
  2. class chado_linker__cvterm_addr extends TripalField {
  3. /**
  4. * @see TripalField::field_info()
  5. */
  6. function field_info() {
  7. return array(
  8. 'label' => t('Add an Annotation Type'),
  9. 'description' => t('This record may have any number of types of
  10. annotations. Use this field to first add the type.'),
  11. 'default_widget' => 'chado_linker__cvterm_adder_widget',
  12. 'default_formatter' => 'hidden',
  13. 'settings' => array(),
  14. 'storage' => array(
  15. 'type' => 'field_chado_storage',
  16. 'module' => 'tripal_chado',
  17. 'active' => TRUE
  18. ),
  19. 'no_ui' => TRUE
  20. );
  21. }
  22. /**
  23. * @see TripalField::attach_info()
  24. */
  25. function attach_info($entity_type, $bundle, $settings) {
  26. $field_info = array();
  27. $table_name = $settings['data_table'];
  28. $type_table = $settings['type_table'];
  29. $type_field = $settings['field'];
  30. $cv_id = $settings['cv_id'];
  31. $cvterm_id = $settings['cvterm_id'];
  32. // If the linker table does not exists then we don't want to add attach.
  33. $cvterm_table = $table_name . '_cvterm';
  34. if (!chado_table_exists($cvterm_table)) {
  35. return $field_info;
  36. }
  37. // Initialize the field array.
  38. $field_info = array(
  39. 'field_name' => $cvterm_table,
  40. 'field_type' => 'chado_linker__cvterm_adder',
  41. 'widget_type' => 'chado_linker__cvterm_adder_widget',
  42. 'field_settings' => array(
  43. 'base_table' => $table_name,
  44. ),
  45. 'cardinality' => 1,
  46. 'storage' => 'field_chado_storage',
  47. 'widget_settings' => array('display_label' => 1),
  48. 'description' => '',
  49. 'label' => 'Additional Annotation Types',
  50. 'is_required' => 0,
  51. // This feld is never visible so there are no field settings for
  52. // Chado nor the semantiv web.
  53. );
  54. return $field_info;
  55. }
  56. /**
  57. * @see TripalField::widget_info()
  58. */
  59. function widget_info() {
  60. return array(
  61. 'label' => t('Add an Annotation'),
  62. 'field types' => array('chado_linker__cvterm_adder'),
  63. );
  64. }
  65. /**
  66. * @see TripalField::widget_form()
  67. */
  68. function widget_form(&$widget, $form, $form_state, $field, $instance,
  69. $langcode, $items, $delta, $element) {
  70. // This field has no value field. Just a fieldset for adding new annotation types.
  71. $widget['#element_validate'] = array('chado_linker__cvterm_adder_widget_validate');
  72. $widget['#type'] = 'fieldset';
  73. $widget['#title'] = $element['#title'];
  74. $widget['#description'] = $element['#description'];
  75. $widget['#group'] = 'entity_form_vtabs';
  76. $widget['cvterm_class_adder_instructions'] = array(
  77. '#type' => 'item',
  78. '#markup' => t('You may add annotation types to this form by
  79. providing a vocabulary name in the field below
  80. and clicking the "Add Annotation Type" button. This will add a
  81. new field to the form above for the vocabulary you entered which
  82. will allow users to associate terms from that vocabulary to
  83. this record.'),
  84. );
  85. $options = tripal_get_cv_select_options();
  86. $widget['value'] = array(
  87. '#type' => 'select',
  88. '#title' => t('Vocabulary'),
  89. '#options' => $options,
  90. '#description' => t("Please enter the vocabulary that contains terms
  91. you want to allow users to use for annotations."),
  92. );
  93. // When this button is clicked, the form will be validated and submitted.
  94. // Therefore, we set custom submit and validate functions to override the
  95. // default form submit. In the validate function we set the form_state
  96. // to rebuild the form so the submit function never actually gets called,
  97. // but we need it or Drupal will run the default validate anyway.
  98. // we also set #limit_validation_errors to empty so fields that
  99. // are required that don't have values won't generate warnings.
  100. $widget['cvterm_class_adder_button'] = array(
  101. '#value' => t('Add Annotation Type'),
  102. '#type' => 'submit',
  103. '#name' => 'cvterm_class_adder_button',
  104. '#submit' => array('chado_linker__cvterm_adder_widget_submit'),
  105. '#limit_validation_errors' => array(array($field['field_name'])),
  106. );
  107. }
  108. }
  109. /**
  110. * Callback function for validating the chado_linker__cvterm_adder_widget.
  111. */
  112. function chado_linker__cvterm_adder_widget_validate($element, &$form_state) {
  113. // Add the new field to the entity
  114. if (array_key_exists('triggering_element', $form_state) and
  115. $form_state['triggering_element']['#name'] == 'cvterm_class_adder_button') {
  116. $form_state['rebuild'] = TRUE;
  117. $field_name = $element['#field_name'];
  118. $entity_type = $element['#entity']->type;
  119. $bundle = $element['#entity']->bundle;
  120. // Get the base table name from the field annotations.
  121. $field = field_info_field($field_name);
  122. $base_table = $field['settings']['base_table'];
  123. // Get the vocabulary.
  124. $cvterm_class_adder = tripal_chado_get_field_form_values($field_name, $form_state);
  125. $cv = chado_generate_var('cv', array('cv_id' => $cvterm_class_adder));
  126. if (!$cv) {
  127. form_set_error(implode('][', $element ['#parents']) . '][value', t("Please select a vocabulary."));
  128. return;
  129. }
  130. $type_field_name = $field_name . '__' . $cv->cv_id;
  131. // The field name is the table name in this case. We want to get the
  132. // primary key as this should be the field that maps th the value.
  133. $schema = chado_get_schema($field_name);
  134. $pkey = $schema['primary key'][0];
  135. $field_info = array(
  136. 'field_type' => 'cvterm',
  137. 'widget_type' => 'tripal_chado_cvterm_widget',
  138. 'field_settings' => array(
  139. 'chado_table' => $field_name,
  140. 'chado_column' => $pkey,
  141. 'base_table' => $base_table,
  142. ),
  143. 'storage' => 'field_chado_storage',
  144. 'widget_settings' => array(),
  145. 'description' => "Annotations from the $cv->name vocabulary",
  146. 'label' => ucfirst(preg_replace('/_/', ' ', $cv->name)),
  147. 'is_required' => FALSE,
  148. // All annotations are unlimited.
  149. 'cardinality' => FIELD_CARDINALITY_UNLIMITED,
  150. );
  151. tripal_add_bundle_field($type_field_name, $field_info, $entity_type, $bundle);
  152. }
  153. }
  154. /**
  155. * Callback function for submitting the chado_linker__cvterm_adder_widget.
  156. */
  157. function chado_linker__cvterm_adder_widget_submit($element, &$form_state) {
  158. }