kvproperty_adder.inc 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. /**
  3. *
  4. * @param unknown $entity_type
  5. * @param unknown $entity
  6. * @param unknown $field
  7. * @param unknown $instance
  8. * @param unknown $langcode
  9. * @param unknown $items
  10. * @param unknown $display
  11. */
  12. function tripal_fields_kvproperty_adder_formatter(&$element, $entity_type, $entity, $field,
  13. $instance, $langcode, $items, $display) {
  14. foreach ($items as $delta => $item) {
  15. // Do nothing, this field is only meant for the form.
  16. }
  17. }
  18. /**
  19. *
  20. * @param unknown $field_name
  21. * @param unknown $widget
  22. * @param unknown $form
  23. * @param unknown $form_state
  24. * @param unknown $field
  25. * @param unknown $instance
  26. * @param unknown $langcode
  27. * @param unknown $itemsG
  28. * @param unknown $delta
  29. * @param unknown $element
  30. */
  31. function tripal_fields_kvproperty_adder_widget(&$widget, $form, $form_state, $field, $instance, $langcode, $items, $delta, $element) {
  32. // This field has no value field. Just a fieldset for adding new properties.
  33. $widget['#theme'] = 'tripal_fields_kvproperty_addr_widget';
  34. $widget['#element_validate'] = array('tripal_fields_kvproperty_adder_widget_validate');
  35. $widget['kvproperty_instructions'] = array(
  36. '#type' => 'item',
  37. '#markup' => t('You may add additional properties to this form by
  38. providing a property name (from a vocabulary) in the field below
  39. and clicking the "Add Property" button. This will add a
  40. new field to the form above for the property you entered.
  41. In the future, this field will be present for all records
  42. of this type.'),
  43. );
  44. $widget['value'] = array(
  45. '#title' => t('Property Type'),
  46. '#type' => 'textfield',
  47. '#description' => t("Please enter the type of property that you want to add. As you type, suggestions will be provided."),
  48. '#autocomplete_path' => "admin/tripal/chado/tripal_cv/cvterm/auto_name/",
  49. );
  50. $widget['kvproperty_adder_link'] = array(
  51. '#type' => 'item',
  52. '#markup' => '<span class="kvproperty-adder-link">' . l('Add a term', 'admin/tripal/chado/tripal_cv/cvterm/add', array('attributes' => array('target' => '_blank'))) . '</span>',
  53. );
  54. // When this button is clicked, the form will be validated and submitted.
  55. // Therefore, we set custom submit and validate functions to override the
  56. // default form submit. In the validate function we set the form_state
  57. // to rebuild the form so the submit function never actually gets called,
  58. // but we need it or Drupal will run the default validate anyway.
  59. // we also set #limit_validation_errors to empty so fields that
  60. // are required that don't have values won't generate warnings.
  61. $widget['kvproperty_adder_button'] = array(
  62. '#value' => t('Add Property'),
  63. '#type' => 'submit',
  64. '#name' => 'kvproperty_adder_button',
  65. '#submit' => array('tripal_fields_kvproperty_adder_widget_submit'),
  66. '#limit_validation_errors' => array(array($field['field_name'])),
  67. );
  68. }
  69. /**
  70. * Theme function for the kvproperty_addr_widget.
  71. *
  72. * @param $variables
  73. */
  74. function theme_tripal_fields_kvproperty_addr_widget($variables) {
  75. $element = $variables['element'];
  76. $fieldset = array(
  77. '#title' => $element['#title'],
  78. '#value' => '',
  79. '#description' => $element['#description'],
  80. '#children' => drupal_render_children($element),
  81. '#group' => 'ev_tabs',
  82. '#attributes' => array(),
  83. );
  84. return theme('fieldset', array('element' => $fieldset));
  85. }
  86. /**
  87. * Callback function for validating the tripal_fields_kvproperty_adder_widget.
  88. */
  89. function tripal_fields_kvproperty_adder_widget_validate($element, &$form_state) {
  90. // Add the new field to the entity
  91. if (array_key_exists('triggering_element', $form_state) and
  92. $form_state['triggering_element']['#name'] == 'kvproperty_adder_button') {
  93. $form_state['rebuild'] = TRUE;
  94. $field_name = $element['#parents'][0];
  95. $entity_type = $element['#entity']->type;
  96. $bundle = $element['#entity']->bundle;
  97. // Get the term for the property
  98. $kvproperty = tripal_fields_get_field_form_values($field_name, $form_state);
  99. $term = chado_generate_var('cvterm', array('name' => $kvproperty), $options = array('return_array' => TRUE));
  100. if (count($term) == 1) {
  101. $prop_field_name = $field_name . '__' . $term[0]->cvterm_id;
  102. // The field name is the table name in this case. We want to get the
  103. // primary key as this should be the field that maps th the value.
  104. $schema = chado_get_schema($field_name);
  105. $pkey = $schema['primary key'][0];
  106. $field_info = array(
  107. 'field_type' => 'kvproperty',
  108. 'widget_type' => 'tripal_fields_kvproperty_widget',
  109. 'field_settings' => array(
  110. 'chado_table' => $field_name,
  111. 'chado_column' => $pkey,
  112. ),
  113. 'widget_settings' => array(),
  114. 'description' => $term[0]->definition ? $term[0]->definition : '',
  115. 'label' => ucfirst(preg_replace('/_/', ' ', $term[0]->name)),
  116. 'is_required' => FALSE,
  117. // All properties are unlimited.
  118. 'cardinality' => FIELD_CARDINALITY_UNLIMITED,
  119. );
  120. tripal_add_bundle_field($prop_field_name, $field_info, $entity_type, $bundle);
  121. }
  122. else if (count($term) > 1) {
  123. form_set_error(implode('][', $element ['#parents']) . '][value', t("This term is present in multiple vocabularies. Please select the appropriate one."));
  124. }
  125. else {
  126. form_set_error(implode('][', $element ['#parents']) . '][value', t("Please provide a property type to add."));
  127. }
  128. }
  129. }
  130. /**
  131. * Callback function for submitting the tripal_fields_kvproperty_adder_widget.
  132. */
  133. function tripal_fields_kvproperty_adder_widget_submit($element, &$form_state) {
  134. }