kvproperty_adder.inc 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. $field_info = array(
  103. 'field_type' => 'kvproperty',
  104. 'widget_type' => 'tripal_fields_kvproperty_widget',
  105. 'field_settings' => array(
  106. 'chado_table' => $field_name,
  107. 'chado_column' => 'type_id',
  108. ),
  109. 'widget_settings' => array(),
  110. 'description' => $term[0]->definition ? $term[0]->definition : '',
  111. 'label' => ucfirst(preg_replace('/_/', ' ', $term[0]->name)),
  112. 'is_required' => FALSE,
  113. // All properties are unlimited.
  114. 'cardinality' => FIELD_CARDINALITY_UNLIMITED,
  115. );
  116. tripal_add_bundle_field($prop_field_name, $field_info, $entity_type, $bundle);
  117. }
  118. else if (count($term) > 1) {
  119. form_set_error(implode('][', $element ['#parents']) . '][value', t("This term is present in multiple vocabularies. Please select the appropriate one."));
  120. }
  121. else {
  122. form_set_error(implode('][', $element ['#parents']) . '][value', t("Please provide a property type to add."));
  123. }
  124. }
  125. }
  126. /**
  127. * Callback function for submitting the tripal_fields_kvproperty_adder_widget.
  128. */
  129. function tripal_fields_kvproperty_adder_widget_submit($element, &$form_state) {
  130. }