tripal_fields.fields.inc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  1. <?php
  2. /**
  3. * Implements hook_field_info().
  4. */
  5. function tripal_fields_field_info() {
  6. $fields = array(
  7. 'organism_id' => array(
  8. 'label' => t('Organism'),
  9. 'description' => t('A field for specifying an organism.'),
  10. 'default_widget' => 'tripal_fields_organism_select_widget',
  11. 'default_formatter' => 'tripal_fields_organism_formatter',
  12. 'settings' => array(),
  13. 'storage' => array(
  14. 'type' => 'field_chado_storage',
  15. 'module' => 'tripal_fields',
  16. 'active' => TRUE
  17. ),
  18. ),
  19. 'dbxref_id' => array(
  20. 'label' => t('Cross-reference'),
  21. 'description' => t('This record can be cross-referenced with a record in another online database. This field is intended for the most prominent reference. At a minimum, the database and accession must be provided.'),
  22. 'default_widget' => 'tripal_fields_primary_dbxref_widget',
  23. 'default_formatter' => 'tripal_fields_primary_dbxref_formatter',
  24. 'settings' => array(),
  25. 'storage' => array(
  26. 'type' => 'field_chado_storage',
  27. 'module' => 'tripal_fields',
  28. 'active' => TRUE
  29. ),
  30. ),
  31. 'residues' => array(
  32. 'label' => t('Residues'),
  33. 'description' => t('A field for managing nucleotide and protein residues.'),
  34. 'default_widget' => 'tripal_fields_residue_textarea_widget',
  35. 'default_formatter' => 'tripal_fields_residues_formatter',
  36. 'settings' => array(),
  37. 'storage' => array(
  38. 'type' => 'field_chado_storage',
  39. 'module' => 'tripal_fields',
  40. 'active' => TRUE
  41. ),
  42. ),
  43. 'md5checksum' => array(
  44. 'label' => t('MD5 checksum'),
  45. 'description' => t('A field for generating MD5 checksum for a sequence.'),
  46. 'default_widget' => 'tripal_fields_md5checksum_checkbox_widget',
  47. 'default_formatter' => 'tripal_fields_md5checksum_formatter',
  48. 'settings' => array(),
  49. 'storage' => array(
  50. 'type' => 'field_chado_storage',
  51. 'module' => 'tripal_fields',
  52. 'active' => TRUE
  53. ),
  54. ),
  55. 'seqlen' => array(
  56. 'label' => t('Sequence length'),
  57. 'description' => t('A field for calculating the length of a sequence.'),
  58. 'default_widget' => 'tripal_fields_seqlen_hidden_widget',
  59. 'default_formatter' => 'tripal_fields_seqlen_formatter',
  60. 'settings' => array(),
  61. 'storage' => array(
  62. 'type' => 'field_chado_storage',
  63. 'module' => 'tripal_fields',
  64. 'active' => TRUE
  65. ),
  66. ),
  67. // The field provides a widget for adding new properties
  68. // to an entity that is connected to a base table that has a prop table
  69. // in Chado.
  70. 'kvproperty' => array(
  71. 'label' => t('Add a Property Type'),
  72. 'description' => t('This record may have any number of properties. Use this field to first add the type.'),
  73. 'default_widget' => 'tripal_fields_kvproperty_widget',
  74. 'default_formatter' => 'tripal_fields_kvproperty_formatter',
  75. 'settings' => array(),
  76. 'storage' => array(
  77. 'type' => 'field_chado_storage',
  78. 'module' => 'tripal_fields',
  79. 'active' => TRUE
  80. ),
  81. ),
  82. );
  83. return $fields;
  84. }
  85. /**
  86. * Implements hook_field_widget_info().
  87. */
  88. function tripal_fields_field_widget_info() {
  89. return array(
  90. 'tripal_fields_organism_select_widget' => array(
  91. 'label' => t('Organism Select'),
  92. 'field types' => array('organism_id')
  93. ),
  94. 'tripal_fields_primary_dbxref_widget' => array(
  95. 'label' => t('Cross-reference'),
  96. 'field types' => array('dbxref_id'),
  97. 'description' => t('This record can be cross-referenced with a record in another online database. This field is intended for the most prominent reference. At a minimum, the database and accession must be provided.'),
  98. ),
  99. 'tripal_fields_md5checksum_checkbox_widget' => array(
  100. 'label' => t('MD5 Checksum Checkbox'),
  101. 'field types' => array('md5checksum'),
  102. ),
  103. 'tripal_fields_residues_textarea_widget' => array(
  104. 'label' => t('Residues'),
  105. 'field types' => array('residues'),
  106. ),
  107. 'tripal_fields_seqlen_hidden_widget' => array(
  108. 'label' => t('Sequence Length'),
  109. 'field types' => array('seqlen'),
  110. ),
  111. 'tripal_fields_kvproperty_widget' => array(
  112. 'label' => t('Property'),
  113. 'field types' => array('kvproperty'),
  114. ),
  115. );
  116. }
  117. /**
  118. * Implements hook_field_formatter_info().
  119. */
  120. function tripal_fields_field_formatter_info() {
  121. return array(
  122. 'tripal_fields_organism_formatter' => array(
  123. 'label' => t('Organism'),
  124. 'field types' => array('organism_id')
  125. ),
  126. 'tripal_fields_primary_dbxref_formatter' => array(
  127. 'label' => t('Cross-reference'),
  128. 'field types' => array('dbxref_id')
  129. ),
  130. 'tripal_fields_md5checksum_formatter' => array(
  131. 'label' => t('MD5 checksum'),
  132. 'field types' => array('md5checksum')
  133. ),
  134. 'tripal_fields_residues_formatter' => array(
  135. 'label' => t('Residues'),
  136. 'field types' => array('residues')
  137. ),
  138. 'tripal_fields_seqlen_formatter' => array(
  139. 'label' => t('Sequence length'),
  140. 'field types' => array('seqlen')
  141. ),
  142. 'tripal_fields_kvproperty_formatter' => array(
  143. 'label' => t('Property'),
  144. 'field types' => array('kvproperty')
  145. ),
  146. );
  147. }
  148. /**
  149. * Implements hook_field_formatter_view().
  150. *
  151. * Two formatters are implemented.
  152. * - field_example_simple_text just outputs markup indicating the color that
  153. * was entered and uses an inline style to set the text color to that value.
  154. * - field_example_color_background does the same but also changes the
  155. * background color of div.region-content.
  156. *
  157. * @see field_example_field_formatter_info()
  158. */
  159. function tripal_fields_field_formatter_view($entity_type, $entity, $field,
  160. $instance, $langcode, $items, $display) {
  161. $element = array();
  162. switch ($display['type']) {
  163. case 'tripal_fields_organism_formatter':
  164. foreach ($items as $delta => $item) {
  165. $organism = chado_select_record('organism', array('genus', 'species'), array('organism_id' => $item['value']));
  166. // TODO: add hook here to allow other modules to change this display
  167. // if they want.
  168. $element[$delta] = array(
  169. // We create a render array to produce the desired markup,
  170. // "<p>Genus Species</p>".
  171. // See theme_html_tag().
  172. '#type' => 'markup',
  173. '#markup' => '<i>' . $organism[0]->genus .' ' . $organism[0]->species . '</i>',
  174. );
  175. }
  176. break;
  177. case 'tripal_fields_primary_dbxref_formatter':
  178. foreach ($items as $delta => $item) {
  179. $accession = '';
  180. if ($item['value']) {
  181. $dbxref = chado_generate_var('dbxref', array('dbxref_id' => $item['value']));
  182. $accession = $dbxref->db_id->name . ':' . $dbxref->accession;
  183. if ($dbxref->db_id->urlprefix) {
  184. $accession = l($accession, $dbxref->db_id->urlprefix . '/' . $dbxref->accession);
  185. }
  186. }
  187. // TODO: add hook here to allow other modules to change this display
  188. // if they want.
  189. $element[$delta] = array(
  190. // We create a render array to produce the desired markup,
  191. '#type' => 'markup',
  192. '#markup' => $accession,
  193. );
  194. }
  195. break;
  196. case 'tripal_fields_md5checksum_formatter':
  197. foreach ($items as $delta => $item) {
  198. // TODO: add hook here to allow other modules to change this display
  199. // if they want.
  200. $element[$delta] = array(
  201. // We create a render array to produce the desired markup,
  202. '#type' => 'markup',
  203. '#markup' => key_exists('value', $item) ? $item['value'] : '',
  204. );
  205. }
  206. break;
  207. case 'tripal_fields_residues_formatter':
  208. foreach ($items as $delta => $item) {
  209. // TODO: add hook here to allow other modules to change this display
  210. // if they want.
  211. $residues = key_exists('value', $item) ? $item['value'] : '';
  212. $element[$delta] = array(
  213. // We create a render array to produce the desired markup,
  214. '#type' => 'markup',
  215. '#markup' => '<pre>' . $residues . '</pre>',
  216. );
  217. }
  218. break;
  219. case 'tripal_fields_seqlen_formatter':
  220. foreach ($items as $delta => $item) {
  221. // TODO: add hook here to allow other modules to change this display
  222. // if they want.
  223. $element[$delta] = array(
  224. // We create a render array to produce the desired markup,
  225. '#type' => 'markup',
  226. '#markup' => key_exists('value', $item) ? $item['value'] : '',
  227. );
  228. }
  229. break;
  230. case 'tripal_fields_kvproperty_formatter':
  231. // Do nothing. This field is only used in the form.
  232. $element[$delta] = '';
  233. break;
  234. }
  235. return $element;
  236. }
  237. /**
  238. * Implements hook_field_widget_form().
  239. */
  240. function tripal_fields_field_widget_form(&$form, &$form_state, $field,
  241. $instance, $langcode, $items, $delta, $element) {
  242. $widget = $element;
  243. $widget['#delta'] = $delta;
  244. $field_name = $field['field_name'];
  245. switch ($instance['widget']['type']) {
  246. case 'tripal_fields_organism_select_widget':
  247. $options = tripal_get_organism_select_options();
  248. $widget += array(
  249. '#type' => 'select',
  250. '#title' => $element['#title'],
  251. '#description' => $element['#description'],
  252. '#options' => $options,
  253. '#default_value' => count($items) > 0 ? $items[0]['value'] : 0,
  254. '#required' => $element['#required'],
  255. '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
  256. '#delta' => $delta,
  257. '#element_validate' => array('tripal_fields_organism_select_widget_validate'),
  258. );
  259. $element['value'] = $widget;
  260. break;
  261. case 'tripal_fields_primary_dbxref_widget':
  262. // Get the field defaults from the database if a record exists.
  263. $dbxref_id = '';
  264. $db_id = '';
  265. $accession = '';
  266. $version = '';
  267. $description = '';
  268. if (count($items) > 0 and $items[0]['value']) {
  269. $dbxref = chado_generate_var('dbxref', array('dbxref_id' => $items[0]['value']));
  270. $dbxref_id = $dbxref->dbxref_id;
  271. $db_id = $dbxref->db_id->db_id;
  272. $accession = $dbxref->accession;
  273. $version = $dbxref->version;
  274. $description = $dbxref->description;
  275. }
  276. $temp = tripal_fields_get_field_form_values($field_name, $form_state, 'dbxref__db_id');
  277. if (count($temp) > 0) {
  278. $db_id = $temp[0];
  279. }
  280. $schema = chado_get_schema('dbxref');
  281. $options = tripal_get_db_select_options();
  282. $widget += array(
  283. '#element_validate' => array('tripal_fields_primary_dbxref_widget_validate'),
  284. '#type' => 'fieldset',
  285. '#title' => $element['#title'],
  286. '#description' => $element['#description'],
  287. '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
  288. '#delta' => $delta,
  289. '#theme' => 'tripal_fields_primary_dbxref_widget',
  290. '#group' => 'entity_vetical_tabs',
  291. array(
  292. $element['#field_name'] => array(
  293. '#type' => 'hidden',
  294. '#default_value' => $dbxref_id,
  295. ),
  296. 'dbxref__db_id' => array(
  297. '#type' => 'select',
  298. '#title' => t('Database'),
  299. '#options' => $options,
  300. '#required' => $element['#required'],
  301. '#default_value' => $db_id,
  302. '#ajax' => array(
  303. 'callback' => "tripal_fields_primary_dbxref_widget_form_ajax_callback",
  304. 'wrapper' => "$field_name-dbxref--db-id",
  305. 'effect' => 'fade',
  306. 'method' => 'replace'
  307. )
  308. ),
  309. 'dbxref__accession' => array(
  310. '#type' => 'textfield',
  311. '#title' => t('Accession'),
  312. '#default_value' => $accession,
  313. '#required' => $element['#required'],
  314. '#maxlength' => array_key_exists('length', $schema['fields']['accession']) ? $schema['fields']['accession']['length'] : 255,
  315. '#size' => 15,
  316. '#autocomplete_path' => "admin/tripal/chado/tripal_db/dbxref/auto_name/$db_id",
  317. '#ajax' => array(
  318. 'callback' => "tripal_fields_primary_dbxref_widget_form_ajax_callback",
  319. 'wrapper' => "$field_name-dbxref--db-id",
  320. 'effect' => 'fade',
  321. 'method' => 'replace'
  322. )
  323. ),
  324. 'dbxref__version' => array(
  325. '#type' => 'textfield',
  326. '#title' => t('Version'),
  327. '#default_value' => $version,
  328. '#maxlength' => array_key_exists('length', $schema['fields']['version']) ? $schema['fields']['version']['length'] : 255,
  329. '#size' => 5,
  330. ),
  331. 'dbxref__description' => array(
  332. '#type' => 'textfield',
  333. '#title' => t('Description'),
  334. '#default_value' => $description,
  335. '#size' => 20,
  336. ),
  337. ),
  338. '#prefix' => "<span id='$field_name-dbxref--db-id'>",
  339. '#suffix' => "</span>"
  340. );
  341. $element['value'] = $widget;
  342. break;
  343. case 'tripal_fields_md5checksum_checkbox_widget':
  344. $widget += array(
  345. '#type' => 'checkbox',
  346. '#title' => $element['#title'],
  347. '#description' => $element['#description'],
  348. '#options' => array(0, 1),
  349. '#default_value' => 1,
  350. '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
  351. '#delta' => $delta,
  352. '#element_validate' => array('tripal_fields_md5checksum_checkbox_widget_validate'),
  353. );
  354. $element['value'] = $widget;
  355. break;
  356. case 'tripal_fields_residues_textarea_widget':
  357. $widget += array(
  358. '#type' => 'textarea',
  359. '#title' => $element['#title'],
  360. '#description' => $element['#description'],
  361. '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
  362. '#default_value' => count($items) > 0 ? $items[0]['value'] : 0,
  363. '#delta' => $delta,
  364. '#element_validate' => array('tripal_fields_residues_textarea_widget_validate'),
  365. );
  366. $element['value'] = $widget;
  367. break;
  368. case 'tripal_fields_seqlen_hidden_widget':
  369. $widget += array(
  370. '#type' => 'hidden',
  371. '#title' => $element['#title'],
  372. '#description' => $element['#description'],
  373. '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
  374. '#delta' => $delta,
  375. '#element_validate' => array('tripal_fields_seqlen_hidden_widget_validate'),
  376. );
  377. $element['value'] = $widget;
  378. break;
  379. case 'tripal_fields_kvproperty_widget':
  380. $widget += array(
  381. '#element_validate' => array('tripal_fields_kvproperty_widget_validate'),
  382. '#type' => 'fieldset',
  383. '#title' => $element['#title'],
  384. '#description' => $element['#description'],
  385. '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
  386. '#delta' => $delta,
  387. '#group' => 'entity_vetical_tabs',
  388. array(
  389. 'kvproperty' => array(
  390. '#title' => t('Property Type'),
  391. '#type' => 'textfield',
  392. '#description' => t("Please enter the type of property that you want to add. As you type, suggestions will be provided."),
  393. '#autocomplete_path' => "eadmin/tripal/chado/tripal_cv/cvterm/auto_name/",
  394. ),
  395. 'kvproperty_add' => array(
  396. '#value' => t('Add fields for property type'),
  397. '#type' => 'button',
  398. '#name' => 'kvproperty_add',
  399. ),
  400. ),
  401. );
  402. $element['value'] = $widget;
  403. break;
  404. }
  405. return $element;
  406. }
  407. /**
  408. * Implements hook_field_is_empty().
  409. */
  410. function tripal_fields_field_is_empty($item, $field) {
  411. if (empty($item['value']) && (string) $item['value'] !== '0') {
  412. return TRUE;
  413. }
  414. return FALSE;
  415. }
  416. /**
  417. * Callback function for validating the tripal_fields_organism_select_widget.
  418. */
  419. function tripal_fields_organism_select_widget_validate($element, &$form_state) {
  420. $field_name = $element['#field_name'];
  421. // If the form ID is field_ui_field_edit_form, then the user is editing the
  422. // field's values in the manage fields form of Drupal. We don't want
  423. // to validate it as if it were being used in a data entry form.
  424. if ($form_state['build_info']['form_id'] =='field_ui_field_edit_form') {
  425. return;
  426. }
  427. $organism_id = tripal_fields_get_field_form_values($field_name, $form_state);
  428. if (count($organism_id) == 0) {
  429. form_error($element, t("Please specify an organism that already exists in the database."));
  430. }
  431. }
  432. /**
  433. * Callback function for validating the tripal_fields_organism_select_widget.
  434. */
  435. function tripal_fields_primary_dbxref_widget_validate($element, &$form_state) {
  436. $field_name = $element['#field_name'];
  437. // If the form ID is field_ui_field_edit_form, then the user is editing the
  438. // field's values in the manage fields form of Drupal. We don't want
  439. // to validate it as if it were being used in a data entry form.
  440. if ($form_state['build_info']['form_id'] =='field_ui_field_edit_form') {
  441. return;
  442. }
  443. // Get the field values.
  444. $db_id = tripal_fields_get_field_form_values($field_name, $form_state, "dbxref__db_id");
  445. $accession = tripal_fields_get_field_form_values($field_name, $form_state, "dbxref__accession");
  446. $version = tripal_fields_get_field_form_values($field_name, $form_state, "dbxref__version");
  447. $description = tripal_fields_get_field_form_values($field_name, $form_state, "dbxref__description");
  448. // Make sure that if a database ID is provided that an accession is also
  449. // provided. Here we use the form_set_error function rather than the
  450. // form_error function because the form_error will add a red_highlight
  451. // around all of the fields in the fieldset which is confusing as it's not
  452. // clear to the user what field is required and which isn't. Therefore,
  453. // we borrow the code from the 'form_error' function and append the field
  454. // so that the proper field is highlighted on error.
  455. if (count($db_id) == 0 and count($accession) > 0) {
  456. form_set_error(implode('][', $element ['#parents']) . '][0][dbxref__db_id', t("A database and the accession must both be provided for the primary cross reference."));
  457. }
  458. if (count($db_id) > 0 and count($accession) == 0) {
  459. form_set_error(implode('][', $element ['#parents']) . '][0][dbxref__accession', t("A database and the accession must both be provided for the primary cross reference."));
  460. }
  461. // If user did not select a database, we want to remove dbxref_id from the
  462. // field.
  463. if (count($db_id) == 0) {
  464. tripal_fields_set_field_form_values($field_name, $form_state, '__NULL__', $field_name);
  465. }
  466. }
  467. /**
  468. * Callback function for validating the tripal_fields_kvproperty_widget.
  469. */
  470. function tripal_fields_kvproperty_widget_validate($element, &$form_state) {
  471. // Add the new field to the entity
  472. $form_state['rebuild'] = TRUE;
  473. }
  474. /**
  475. * Callback function for validating the tripal_fields_md5checksum_checkbox_widget.
  476. */
  477. function tripal_fields_md5checksum_checkbox_widget_validate($element, &$form_state) {
  478. $field_name = $element['#field_name'];
  479. // Calculate the md5 checksum for the sequence only if md5 box is checked and the residues exist
  480. $residues = tripal_fields_get_field_form_values('feature__residues', $form_state);
  481. if (count($residues) > 0 && trim($residues[0]) != '') {
  482. tripal_fields_set_field_form_values ($field_name, $form_state, md5($residues[0]));
  483. }
  484. else {
  485. // Otherwise, remove the md5 value
  486. tripal_fields_set_field_form_values ($field_name, $form_state, '__NULL__');
  487. }
  488. }
  489. /**
  490. * Callback function for validating the tripal_fields_residues_textarea_widget.
  491. */
  492. function tripal_fields_residues_textarea_widget_validate($element, &$form_state) {
  493. $field_name = $element['#field_name'];
  494. // Remove any white spaces.
  495. $residues = tripal_fields_get_field_form_values($field_name, $form_state);
  496. if (count($residues) > 0) {
  497. $residues = preg_replace('/\s/', '', $residues[0]);
  498. tripal_fields_set_field_form_values($field_name, $form_state, $residues);
  499. }
  500. }
  501. /**
  502. * Callback function for validating the tripal_fields_seqlen_hidden_widget.
  503. */
  504. function tripal_fields_seqlen_hidden_widget_validate($element, &$form_state) {
  505. $field_name = $element['#field_name'];
  506. // Get the residues so we can calculate teh length.
  507. $residues = tripal_fields_get_field_form_values('feature__residues', $form_state);
  508. // Remove any white spaces.
  509. if (count($residues) > 0) {
  510. $residues = preg_replace('/\s/', '', $residues[0]);
  511. tripal_fields_set_field_form_values($field_name, $form_state, strlen($residues));
  512. }
  513. else {
  514. // Otherwise, remove the md5 value
  515. tripal_fields_set_field_form_values ($field_name, $form_state, '__NULL__');
  516. }
  517. }
  518. /**
  519. * Theme function for the primary_dbxref_widget.
  520. *
  521. * @param $variables
  522. */
  523. function theme_tripal_fields_primary_dbxref_widget($variables) {
  524. $element = $variables['element'];
  525. $layout = "
  526. <div class=\"primary-dbxref-widget\">
  527. <div class=\"primary-dbxref-widget-item\">" .
  528. drupal_render($element[0]['dbxref__db_id']) . "
  529. </div>
  530. <div class=\"primary-dbxref-widget-item\">" .
  531. drupal_render($element[0]['dbxref__accession']) . "
  532. </div>
  533. <div class=\"primary-dbxref-widget-item\">" .
  534. drupal_render($element[0]['dbxref__version']) . "
  535. </div>
  536. <div class=\"primary-dbxref-widget-item\">" .
  537. drupal_render($element[0]['dbxref__description']) . "
  538. </div>
  539. </div>
  540. ";
  541. return $layout;
  542. }
  543. /**
  544. * Returns the values of the field from the $form_state.
  545. */
  546. function tripal_fields_get_field_form_values($field_name, $form_state, $child = NULL) {
  547. $values = array();
  548. if (!array_key_exists('values', $form_state)) {
  549. return $values;
  550. }
  551. if (array_key_exists($field_name, $form_state['values'])) {
  552. foreach ($form_state['values'][$field_name] as $langcode => $items) {
  553. foreach ($items as $delta => $value) {
  554. if ($child and array_key_exists($child, $value['value'][0]) and $value['value'][0][$child]) {
  555. $values[] = $value['value'][0][$child];
  556. }
  557. else if (!$child and $value['value']) {
  558. $values[] = $value['value'];
  559. }
  560. }
  561. }
  562. }
  563. return $values;
  564. }
  565. /**
  566. * Returns the values of the field from the $form_state.
  567. */
  568. function tripal_fields_set_field_form_values($field_name, &$form_state, $newvalue, $child = NULL) {
  569. $values = array();
  570. foreach ($form_state['values'][$field_name] as $langcode => $items) {
  571. foreach ($items as $delta => $value) {
  572. if ($child and array_key_exists($child, $value['value'][0]) and $value['value'][0][$child]) {
  573. $form_state['values'][$field_name][$langcode][$delta]['value'][0][$child] = $newvalue;
  574. }
  575. else if (!$child) {
  576. $form_state['values'][$field_name][$langcode][$delta]['value'] = $newvalue;
  577. }
  578. }
  579. }
  580. return $values;
  581. }
  582. /**
  583. * An Ajax callback for the tripal_fields_admin_publish_form..
  584. */
  585. function tripal_fields_primary_dbxref_widget_form_ajax_callback($form, $form_state) {
  586. $field_name = $form_state['triggering_element']['#parents'][0];
  587. $db_id = tripal_fields_get_field_form_values($field_name, $form_state, 'dbxref__db_id');
  588. $accession = tripal_fields_get_field_form_values($field_name, $form_state, 'dbxref__accession');
  589. if (count($db_id) > 0 and count($accession) > 0) {
  590. $values = array(
  591. 'db_id' => $db_id[0],
  592. 'accession' => $accession[0],
  593. );
  594. $options = array('is_duplicate' => TRUE);
  595. $has_duplicate = chado_select_record('dbxref', array('*'), $values, $options);
  596. if (!$has_duplicate) {
  597. drupal_set_message('The selected cross reference is new and will be added for future auto completions.');
  598. }
  599. }
  600. return $form[$field_name];
  601. }