chado_linker__prop.inc 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <?php
  2. class chado_linker__prop extends TripalField {
  3. // The default lable for this field.
  4. public static $default_label = 'Property';
  5. // The default description for this field.
  6. public static $default_description = 'Add details about this property.';
  7. // Add any default settings elements. If you override the globalSettingsForm()
  8. // or the instanceSettingsForm() functions then you need to be sure that
  9. // any settings you want those functions to manage are listed in this
  10. // array.
  11. public static $default_settings = array(
  12. 'chado_table' => '',
  13. 'chado_column' => '',
  14. 'base_table' => '',
  15. 'semantic_web' => '',
  16. );
  17. // Set this to the name of the storage backend that by default will support
  18. // this field.
  19. public static $default_storage = 'field_chado_storage';
  20. /**
  21. * @see TripalField::formatterView()
  22. */
  23. public function formatterView(&$element, $entity_type, $entity, $langcode, $items, $display) {
  24. $field_name = $this->field['field_name'];
  25. $chado_table = $this->field['settings']['chado_table'];
  26. $properties = array();
  27. foreach ($items as $delta => $item) {
  28. $properties[] = $item[$chado_table . '__value'];
  29. }
  30. $content = implode(', ', $properties);
  31. if (count($items) > 0) {
  32. $element[0] = array(
  33. '#type' => 'markup',
  34. '#markup' => $content,
  35. );
  36. }
  37. }
  38. /**
  39. * @see TripalField::widgetForm()
  40. */
  41. public function widgetForm(&$widget, &$form, &$form_state, $langcode, $items, $delta, $element) {
  42. $entity = $form['#entity'];
  43. $field_name = $this->field['field_name'];
  44. // Get the record and table mapping info.
  45. $chado_table = $entity->chado_table;
  46. $chado_column = $entity->chado_column;
  47. $chado_record = $entity->chado_record;
  48. $matches = array();
  49. preg_match('/(.*?)__(\d+)/', $field_name, $matches);
  50. // If the field name is not properly formatted then we can't tell what
  51. // table and type this is. So just return.
  52. if (count($matches) != 3) {
  53. return $widget;
  54. }
  55. $table_name = $matches[1];
  56. $cvterm_id = $matches[2];
  57. // Get the name of the pkey field for this property table and the name
  58. // of the FK field that links to the base table.
  59. $schema = chado_get_schema($table_name);
  60. $pkey = $schema['primary key'][0];
  61. $lfkey_field = key($schema['foreign keys'][$chado_table]['columns']);
  62. $rfkey_field = $schema['foreign keys'][$chado_table]['columns'][$lfkey_field];
  63. // Get the field defaults.
  64. $fk_value = '';
  65. $propval = '';
  66. if (array_key_exists($delta, $items)) {
  67. $propval = $items[$delta][$table_name . '__value'];
  68. }
  69. if ($chado_record) {
  70. $fk_value = $chado_record->$rfkey_field;
  71. }
  72. // The group of elements all-together need some extra functionality
  73. // after building up the full list (like draggable table rows).
  74. $widget['#theme'] = 'field_multiple_value_form';
  75. $widget['#title'] = $element['#title'];
  76. $widget['#description'] = $element['#description'];
  77. $widget['#field_name'] = $element['#field_name'];
  78. $widget['#language'] = $element['#language'];
  79. $widget['#weight'] = isset($element['#weight']) ? $element['#weight'] : 0;
  80. $widget['#element_validate'] = array('chado_linker__prop_widget_validate');
  81. $widget['#cardinality'] = 1;
  82. $widget['value'] = array(
  83. '#type' => 'value',
  84. '#value' => $items[$delta]['value'],
  85. );
  86. $widget[$table_name . '__' . $pkey] = array(
  87. '#type' => 'hidden',
  88. '#default_value' => !empty($items[$delta]['value']) ? $items[$delta]['value'] : '',
  89. );
  90. $widget[$table_name . '__' . $lfkey_field] = array(
  91. '#type' => 'hidden',
  92. '#value' => $fk_value,
  93. );
  94. $widget[$table_name . '__value'] = array(
  95. '#type' => 'textfield',
  96. '#default_value' => $propval,
  97. );
  98. $widget[$table_name . '__type_id'] = array(
  99. '#type' => 'hidden',
  100. '#value' => $cvterm_id,
  101. );
  102. $widget[$table_name . '__rank'] = array(
  103. '#type' => 'hidden',
  104. '#value' => $delta,
  105. );
  106. return $widget;
  107. }
  108. /**
  109. * @see TripalField::validate()
  110. */
  111. public function widgetFormValidate($entity_type, $entity, $field, $items, &$errors) {
  112. $field_name = $element['#field_name'];
  113. $delta = $element['#delta'];
  114. $entity = $element['#entity'];
  115. $matches = array();
  116. // Get the record and table mapping info.
  117. $chado_table = $entity->chado_table;
  118. $chado_column = $entity->chado_column;
  119. // Get the table name and cvterm_id for this field.
  120. preg_match('/(.*?)__(\d+)/', $field_name, $matches);
  121. $table_name = $matches[1];
  122. $cvterm_id = $matches[2];
  123. // Get the name of the pkey field for this property table and the name
  124. // of the FK field that links to the base table.
  125. $schema = chado_get_schema($table_name);
  126. $pkey = $schema['primary key'][0];
  127. $lfkey_field = key($schema['foreign keys'][$chado_table]['columns']);
  128. // If we don't have a property value then we need to set all other fields
  129. // to be empty so that when the module tries to save the field on the
  130. // entity it won't try to save a partial record.
  131. // $pkey_val = tripal_chado_get_field_form_values($field_name, $form_state, $delta);
  132. // $prop_value = tripal_chado_get_field_form_values($field_name, $form_state, $delta, $table_name . "__value");
  133. // $fk_val = tripal_chado_get_field_form_values($field_name, $form_state, $delta, $table_name . '__' . $lfkey_field);
  134. // $type_id = tripal_chado_get_field_form_values($field_name, $form_state, $delta, $table_name . '__type_id');
  135. if (!$prop_value) {
  136. tripal_chado_set_field_form_values($field_name, $form_state, '', $delta, $table_name . '__' . $lfkey_field);
  137. tripal_chado_set_field_form_values($field_name, $form_state, '', $delta, $table_name . '__value');
  138. tripal_chado_set_field_form_values($field_name, $form_state, '', $delta, $table_name . '__type_id');
  139. tripal_chado_set_field_form_values($field_name, $form_state, '', $delta, $table_name . '__rank');
  140. }
  141. else {
  142. $rank = tripal_chado_get_field_form_values($field_name, $form_state, $delta, '_weight');
  143. tripal_chado_set_field_form_values($field_name, $form_state, $rank, $delta, $table_name . '__rank');
  144. }
  145. // Remove the properties for this record. We will re-add it. Otherwise,
  146. // if we change ranks, we wind up with multiple records in the property table.
  147. if ($pkey_val) {
  148. $match = array(
  149. $pkey => $pkey_val
  150. );
  151. chado_delete_record($table_name, $match);
  152. }
  153. }
  154. /**
  155. * @see TripalField::load()
  156. */
  157. public function load($entity, $details = array()) {
  158. $field_name = $details['field_name'];
  159. $field_type = $details['type'];
  160. $field_table = $details['settings']['chado_table'];
  161. $field_column = $details['settings']['chado_column'];
  162. $matches = array();
  163. preg_match('/(.*?)__(\d+)/', $field_name, $matches);
  164. $table_name = $matches[1];
  165. $cvterm_id = $matches[2];
  166. // Get the FK that links to the base record.
  167. $schema = chado_get_schema($field_table);
  168. $pkey = $schema['primary key'][0];
  169. $fkey_lcolumn = key($schema['foreign keys'][$base_table]['columns']);
  170. $fkey_rcolumn = $schema['foreign keys'][$base_table]['columns'][$fkey_lcolumn];
  171. // Set some defaults for the empty record.
  172. $entity->{$field_name}['und'][0] = array(
  173. 'value' => '',
  174. $field_table . '__' . $pkey => '',
  175. $field_table . '__' . $fkey_lcolumn => '',
  176. $field_table . '__value' => '',
  177. $field_table . '__type_id' => '',
  178. $field_table . '__rank' => '',
  179. );
  180. // Get the properties associated with this base record for this fields
  181. // given type.
  182. $columns = array('*');
  183. $match = array(
  184. $fkey_lcolumn => $record->$fkey_rcolumn,
  185. 'type_id' => $cvterm_id,
  186. );
  187. $options = array(
  188. 'return_array' => TRUE,
  189. 'order_by' => array('rank' => 'ASC')
  190. );
  191. $properties = chado_select_record($field_table, $columns, $match, $options);
  192. for ($i = 0; $i < count($properties); $i++) {
  193. $property = $properties[$i];
  194. foreach ($schema['fields'] as $fname => $details) {
  195. $entity->{$field_name}['und'][$i] = array(
  196. 'value' => array(),
  197. $field_table . '__' . $pkey => $property->$pkey,
  198. $field_table . '__' . $fkey_lcolumn => $property->$fkey_lcolumn,
  199. $field_table . '__value' => $property->value,
  200. $field_table . '__type_id' => $property->type_id,
  201. $field_table . '__rank' => $property->rank,
  202. );
  203. }
  204. }
  205. }
  206. }
  207. /**
  208. *
  209. * @param unknown $form
  210. * @param unknown $form_state
  211. */
  212. function chado_linker__prop_widget_form_ajax_callback($form, $form_state) {
  213. $field_name = $form_state['triggering_element']['#parents'][0];
  214. return $form[$field_name];
  215. }