tripal_core.relationships.api.inc 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. <?php
  2. /**
  3. * @file
  4. * API to manage the chado _relationship table for various Tripal Node Types
  5. *
  6. * How To Use:
  7. * @code
  8. function chado_example_form($form, $form_state) {
  9. // Default values for form elements can come in the following ways:
  10. //
  11. // 1) as elements of the $node object. This occurs when editing an existing node
  12. // 2) in the $form_state['values'] array which occurs on a failed validation or
  13. // ajax callbacks when the ajax call originates from non-submit fields other
  14. // than button
  15. // 3) in the $form_state['input'] array which occurs on ajax callbacks from submit
  16. // form elements (e.g. buttons) and the form is being rebuilt but has not yet
  17. // been validated
  18. //
  19. // The reference elements added by this function do use AJAX calls from buttons,
  20. // therefore, it is important to check for form values in the $form_state['values']
  21. // for case #2 above, and in the $form_state['input'] for case #3.
  22. // See the chado analysis node form for an example.
  23. // Next, add in all the form array definition particular to your node type
  24. // To add in the relationship form elements, you first need to prepare the arguments
  25. // for the function call.
  26. $details = array(
  27. 'relationship_table' => 'example_relationship', // the name of the table linking additional dbxrefs to this node
  28. 'base_table' => 'example', // the name of the chado table this node links to
  29. 'base_foreign_key' => 'example_id', // key to link to the chado content created by this node
  30. 'base_key_value' => $example_id, // the value of the above key
  31. 'fieldset_title' => 'Relationships', // the non-translated title for this fieldset
  32. 'additional_instructions' => '' // a non-stranslated string providing additional instructions
  33. );
  34. // Finally, and add the additional form elements to the form
  35. tripal_core_relationships_form($form, $form_state, $details);
  36. return $form;
  37. }
  38. function chado_example_insert($node) {
  39. // if there is an example_id in the $node object then this must be a sync so
  40. // we can skip adding the chado_example as it is already there, although
  41. // we do need to proceed with the rest of the insert
  42. if (!property_exists($node, 'example_id')) {
  43. // Add record to chado example table
  44. // Add to any other tables needed
  45. // Add all relationships
  46. // Existing _relationship links with the current example as either the subject_id
  47. // or object_id will be cleared and then re-added
  48. tripal_core_relationships_form_update_relationships(
  49. $node,
  50. 'example_relationship',
  51. $node->example_id
  52. );
  53. }
  54. // Add record to chado_example linking example_id to new node
  55. }
  56. function chado_example_update($node) {
  57. // Update record in chado example table
  58. // Update any other tables needed
  59. // Update all additional database references
  60. // Existing _relationship links with the current example as either the subject_id
  61. // or object_id will be cleared and then re-added
  62. tripal_core_relationships_form_update_relationships(
  63. $node,
  64. 'example_relationship',
  65. $node->example_id
  66. );
  67. // Don't need to update chado_example linking table since niether example_id or nid can be changed in update
  68. }
  69. * @endcode
  70. */
  71. /**
  72. * Provides a form for adding to BASE_relationship and relationship tables
  73. *
  74. * @param $form
  75. * The Drupal form array into which the relationship elements will be added
  76. * @param $form_state
  77. * The corresponding form_state array for the form
  78. * @param $details
  79. * An array defining details needed by this form. Required Keys are:
  80. * - relationship_table: the name of the relationship table (ie: feature_relationship)
  81. * - base_table: the name of the base table (ie: feature)
  82. * - base_foreign_key: the name of the foreign key linking this table to the non-relationship table (ie: feature_id)
  83. * - base_key_value: the value of the base_foreign_key for the current form (ie: 999 if the feature_id=999)
  84. * - nodetype: the non-translated singular title of this node type
  85. * One of the following:
  86. * - cv_id: the id of the ontology to supply terms for the type dropdown
  87. * - cv_name: the name of the ontology to supply terms for the type dropdown
  88. * Optional keys include:
  89. * - fieldset_title: the non-translated title for this fieldset
  90. * - additional_instructions: a non-translated string providing additional instructions
  91. * - nodetype_plural: the non-translated plural title of this node type
  92. *
  93. * @ingroup tripal_relationships_api
  94. */
  95. function tripal_core_relationships_form(&$form, &$form_state, $details) {
  96. $form_state['rebuild'] = TRUE;
  97. // Set Defaults for optional fields
  98. $details['fieldset_title'] = (isset($details['fieldset_title'])) ? $details['fieldset_title'] : 'Relationships';
  99. $details['additional_instructions'] = (isset($details['additional_instructions'])) ? $details['additional_instructions'] : '';
  100. $details['nodetype_plural'] = (isset($details['nodetype_plural'])) ? $details['nodetype_plural'] : $details['nodetype'] . 's';
  101. // Add defaults into form_state to be used elsewhere
  102. $form['rel_details'] = array(
  103. '#type' => 'hidden',
  104. '#value' => serialize($details)
  105. );
  106. // Get relationship type options
  107. if (isset($details['cv_id'])) {
  108. $query = "SELECT cvterm_id, name FROM {cvterm} cvterm WHERE cv_id = :cv_id";
  109. $result = chado_query($query, array(':cv_id' => $details['cv_id']));
  110. } elseif (isset($details['cv_name'])) {
  111. $query = "SELECT cvterm_id, name FROM {cvterm} cvterm WHERE cv_id IN (SELECT cv_id FROM cv WHERE name = :cv_name)";
  112. $result = chado_query($query, array(':cv_name' => $details['cv_name']));
  113. }
  114. $type_options = array(0 => 'Select a Type');
  115. foreach ($result as $cvterm) {
  116. $type_options[ $cvterm->cvterm_id ] = $cvterm->name;
  117. }
  118. $form['relationships'] = array(
  119. '#type' => 'fieldset',
  120. '#title' => t($details['fieldset_title']),
  121. '#description' => t('You may add relationships between this %nodetype and other
  122. %nodetype_plural by entering the details below. You may add
  123. as many relationships as desired by clicking the add button on the right. To
  124. remove a relationship, click the remove button. ' . $details['additional_instructions'],
  125. array('%nodetype' => $details['nodetype'], '%nodetype_plural' => $details['nodetype_plural'])),
  126. '#prefix' => "<div id='relationships-fieldset'>",
  127. '#suffix' => '</div>'
  128. );
  129. $form['relationships']['rel_table'] = array(
  130. '#type' => 'markup',
  131. '#tree' => TRUE,
  132. '#prefix' => '<div id="tripal-generic-edit-relationships-table">',
  133. '#suffix' => '</div>',
  134. '#theme' => 'tripal_core_relationships_form_table'
  135. );
  136. // Add relationships already attached to the node
  137. //---------------------------------------------
  138. if (isset($form_state['chado_relationships'])) {
  139. $existing_rels = $form_state['chado_relationships'];
  140. }
  141. else {
  142. $existing_rels = chado_query(
  143. "SELECT rel.*, base1.uniquename as object_name, base2.uniquename as subject_name, cvterm.name as type_name
  144. FROM {".$details['relationship_table']."} rel
  145. LEFT JOIN {".$details['base_table']."} base1 ON base1.".$details['base_foreign_key']." = rel.object_id
  146. LEFT JOIN {".$details['base_table']."} base2 ON base2.".$details['base_foreign_key']." = rel.subject_id
  147. LEFT JOIN {cvterm} cvterm ON cvterm.cvterm_id = rel.type_id
  148. WHERE rel.object_id = :base_key_value OR rel.subject_id = :base_key_value",
  149. array(':base_key_value' => $details['base_key_value'])
  150. );
  151. }
  152. foreach ($existing_rels as $relationship) {
  153. $form['relationships']['rel_table'][$relationship->type_id]['#type'] = 'markup';
  154. $form['relationships']['rel_table'][$relationship->type_id]['#type'] = '';
  155. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['#type'] = 'markup';
  156. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['#value'] = '';
  157. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['object_id'] = array(
  158. '#type' => 'hidden',
  159. '#value' => $relationship->object_id
  160. );
  161. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['subject_id'] = array(
  162. '#type' => 'hidden',
  163. '#value' => $relationship->subject_id
  164. );
  165. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['type_id'] = array(
  166. '#type' => 'hidden',
  167. '#value' => $relationship->type_id
  168. );
  169. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['object_name'] = array(
  170. '#type' => 'markup',
  171. '#markup' => $relationship->object_name
  172. );
  173. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['type_name'] = array(
  174. '#type' => 'markup',
  175. '#markup' => $relationship->type_name
  176. );
  177. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['subject_name'] = array(
  178. '#type' => 'markup',
  179. '#markup' => $relationship->subject_name
  180. );
  181. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['rank'] = array(
  182. '#type' => 'markup',
  183. '#markup' => $relationship->rank
  184. );
  185. $form['relationships']['rel_table'][$relationship->type_id][$relationship->rank]['rel_action'] = array(
  186. '#type' => 'submit',
  187. '#value' => t('Remove'),
  188. '#name' => "rel_remove-".$relationship->type_id.'-'.$relationship->rank,
  189. '#ajax' => array(
  190. 'callback' => 'tripal_core_relationships_form_ajax_update',
  191. 'wrapper' => 'tripal-generic-edit-relationships-table',
  192. 'effect' => 'fade',
  193. 'method' => 'replace',
  194. 'prevent' => 'click'
  195. ),
  196. '#validate' => array('tripal_core_relationships_form_remove_button_validate'),
  197. '#submit' => array('tripal_core_relationships_form_remove_button_submit'),
  198. );
  199. }
  200. $form['relationships']['rel_table']['new']['object_name'] = array(
  201. '#type' => 'textfield',
  202. );
  203. $form['relationships']['rel_table']['new']['object_is_current'] = array(
  204. '#type' => 'checkbox',
  205. '#title' => t('Current '.$details['nodetype']),
  206. );
  207. $form['relationships']['rel_table']['new']['type_name'] = array(
  208. '#type' => 'select',
  209. '#options' => $type_options,
  210. );
  211. $form['relationships']['rel_table']['new']['subject_name'] = array(
  212. '#type' => 'textfield',
  213. );
  214. $form['relationships']['rel_table']['new']['subject_is_current'] = array(
  215. '#type' => 'checkbox',
  216. '#title' => t('Current '.$details['nodetype']),
  217. );
  218. $form['relationships']['rel_table']['new']['rank'] = array(
  219. '#type' => 'markup',
  220. '#markup' => ''
  221. );
  222. $form['relationships']['rel_table']['new']['rel_action'] = array(
  223. '#type' => 'submit',
  224. '#value' => t('Add'),
  225. '#name' => 'rel_add',
  226. '#ajax' => array(
  227. 'callback' => 'tripal_core_relationships_form_ajax_update',
  228. 'wrapper' => 'tripal-generic-edit-relationships-table',
  229. 'effect' => 'fade',
  230. 'method' => 'replace',
  231. 'prevent' => 'click'
  232. ),
  233. '#validate' => array('tripal_core_relationships_form_add_button_validate'),
  234. '#submit' => array('tripal_core_relationships_form_add_button_submit'),
  235. );
  236. }
  237. /**
  238. * Validate the user input for creating a new relationship
  239. * Called by the add button in tripal_core_relationships_form
  240. *
  241. * @ingroup tripal_relationships_api
  242. */
  243. function tripal_core_relationships_form_add_button_validate($form, &$form_state) {
  244. $details = unserialize($form_state['values']['rel_details']);
  245. // At least one of the participants must be the current node
  246. if (!($form_state['values']['rel_table']['new']['subject_is_current'] OR $form_state['values']['rel_table']['new']['object_is_current'])) {
  247. // If the checkbox isn't set then check to see if either has the same uniquename as the node
  248. if ($form_state['values']['rel_table']['new']['subject_name'] == $form_state['values']['uniquename']) {
  249. $form_state['values']['rel_table']['new']['subject_is_current'] = 1;
  250. form_set_error('subject_is_current', 'To set the current '.$details['nodetype'].', select the
  251. checkbox. You entered the unique name of the current '.$details['nodetype'].' as the subject,
  252. is this what you meant to do?');
  253. }
  254. elseif ($form_state['values']['rel_table']['new']['subject_name'] == $form_state['values']['uniquename']) {
  255. $form_state['values']['rel_table']['new']['object_is_current'] = 1;
  256. form_set_error('subject_is_current', 'To set the current '.$details['nodetype'].', select the
  257. checkbox. You entered the unique name of the current '.$details['nodetype'].' as the subject,
  258. is this what you meant to do?');
  259. }
  260. else {
  261. form_set_error('object_is_current', 'At least one member of the relationship must be
  262. the current '.$details['nodetype'].'. This is specified by checking the "Current '.$details['nodetype'].'"
  263. checkbox for either the subject or object.');
  264. }
  265. }
  266. // The non-current uniquename must be exist in the base table (subject)
  267. if (!($form_state['values']['rel_table']['new']['subject_is_current'])) {
  268. $result = tripal_core_chado_select(
  269. $details['base_table'],
  270. array($details['base_foreign_key']),
  271. array('uniquename' => $form_state['values']['rel_table']['new']['subject_name'])
  272. );
  273. if (!isset($result[0])) {
  274. form_set_error('subject_name', 'The subject must be the unique name of an
  275. existing '.$details['nodetype'].' unless the "Current '.$details['nodetype'].'" checkbox is selected');
  276. }
  277. else {
  278. $form_state['values']['rel_table']['new']['subject_id'] = $result[0]->{$details['base_foreign_key']};
  279. }
  280. }
  281. // The non-current uniquename must exist in the base table (object)
  282. if (!($form_state['values']['rel_table']['new']['object_is_current'])) {
  283. $result = tripal_core_chado_select(
  284. $details['base_table'],
  285. array($details['base_foreign_key']),
  286. array('uniquename' => $form_state['values']['rel_table']['new']['object_name'])
  287. );
  288. if (!isset($result[0])) {
  289. form_set_error('object_name', 'The object must be the unique name of an
  290. existing '.$details['nodetype'].' unless the "Current '.$details['nodetype'].'" checkbox is selected');
  291. }
  292. else {
  293. $form_state['values']['rel_table']['new']['object_id'] = $result[0]->{$details['base_foreign_key']};
  294. }
  295. }
  296. // The type must be a valid cvterm
  297. if ($form_state['values']['rel_table']['new']['type_name']) {
  298. $form_state['values']['rel_table']['new']['type_id'] = $form_state['values']['rel_table']['new']['type_name'];
  299. $result = tripal_core_chado_select(
  300. 'cvterm',
  301. array('name'),
  302. array('cvterm_id' => $form_state['values']['rel_table']['new']['type_id'])
  303. );
  304. if (!isset($result[0])) {
  305. form_set_error('type_id', 'The select type is not a valid controlled vocabulary term.');
  306. }
  307. else {
  308. $form_state['values']['rel_table']['new']['type_name'] = $result[0]->name;
  309. }
  310. }
  311. else {
  312. form_set_error('type_id', 'Please select a type of relationship');
  313. }
  314. }
  315. /**
  316. * Called by the add button in tripal_core_relationships_form
  317. *
  318. * Create an array of additional relationships in the form state. This array will then be
  319. * used to rebuild the form in subsequent builds
  320. *
  321. * @ingroup tripal_relationships_api
  322. */
  323. function tripal_core_relationships_form_add_button_submit(&$form, &$form_state) {
  324. $details = unserialize($form_state['values']['rel_details']);
  325. // if the chado_relationships array is not set then this is the first time modifying the
  326. // relationship table. this means we need to include all the relationships from the db
  327. if (!isset($form_state['chado_relationships'])) {
  328. tripal_core_relationships_form_create_relationship_formstate_array($form, $form_state);
  329. }
  330. // get details for the new relationship
  331. if ($form_state['values']['rel_table']['new']['subject_is_current']) {
  332. $relationship = array(
  333. 'type_id' => $form_state['values']['rel_table']['new']['type_id'],
  334. 'object_id' => $form_state['values']['rel_table']['new']['object_id'],
  335. 'subject_id' => $form_state['values'][ $details['base_foreign_key'] ],
  336. 'type_name' => $form_state['values']['rel_table']['new']['type_name'],
  337. 'object_name' => $form_state['values']['rel_table']['new']['object_name'],
  338. 'subject_name' => $form_state['values']['uniquename'],
  339. 'rank' => '0'
  340. );
  341. }
  342. else {
  343. $relationship = array(
  344. 'type_id' => $form_state['values']['rel_table']['new']['type_id'],
  345. 'object_id' => $form_state['values'][ $details['base_foreign_key'] ],
  346. 'subject_id' => $form_state['values']['rel_table']['new']['subject_id'],
  347. 'type_name' => $form_state['values']['rel_table']['new']['type_name'],
  348. 'object_name' => $form_state['values']['uniquename'],
  349. 'subject_name' => $form_state['values']['rel_table']['new']['subject_name'],
  350. 'rank' => '0'
  351. );
  352. }
  353. // get max rank
  354. $rank = tripal_core_get_max_chado_rank(
  355. $details['relationship_table'],
  356. array(
  357. 'subject_id' => $relationship['subject_id'],
  358. 'type_id' => $relationship['type_id'],
  359. 'object_id' => $relationship['object_id'],
  360. )
  361. );
  362. $relationship['rank'] = strval($rank + 1);
  363. $key = $relationship['type_id'] . '-' . $relationship['rank'];
  364. $form_state['chado_relationships'][$key] = (object) $relationship;
  365. $form_state['rebuild'] = TRUE;
  366. }
  367. /**
  368. * There is no user input for the remove buttons so there is no need to validate
  369. * However, both a submit & validate need to be specified so this is just a placeholder
  370. *
  371. * Called by the many remove buttons in tripal_core_relationships_form
  372. *
  373. * @ingroup tripal_relationships_api
  374. */
  375. function tripal_core_relationships_form_remove_button_validate($form, $form_state) {
  376. // No Validation needed for remove
  377. }
  378. /**
  379. * Remove the correct relationship from the form
  380. * Called by the many remove buttons in tripal_core_relationships_form
  381. *
  382. * @ingroup tripal_relationships_api
  383. */
  384. function tripal_core_relationships_form_remove_button_submit(&$form, &$form_state) {
  385. // if the chado_relationships array is not set then this is the first time modifying the
  386. // relationship table. this means we need to include all the relationships from the db
  387. if (!isset($form_state['chado_relationships'])) {
  388. tripal_core_relationships_form_create_relationship_formstate_array($form, $form_state);
  389. }
  390. // @TODO: Test that this actually works
  391. // remove the specified relationship from the form relationship table
  392. if(preg_match('/rel_remove-([^-]+-[^-]+)/',$form_state['triggering_element']['#name'],$match)) {
  393. $key = $match[1];
  394. if (array_key_exists($key, $form_state['chado_relationships'])) {
  395. unset($form_state['chado_relationships'][$key]);
  396. }
  397. }
  398. $form_state['rebuild'] = TRUE;
  399. }
  400. /**
  401. * Ajax function which returns the section of the form to be re-rendered
  402. *
  403. * @ingroup tripal_relationships_api
  404. */
  405. function tripal_core_relationships_form_ajax_update($form, $form_state) {
  406. return $form['relationships']['rel_table'];
  407. }
  408. /**
  409. * Creates an array in form_state containing the existing relationships. This array is
  410. * then modified by the add/remove buttons and used as a source for rebuilding the form.
  411. *
  412. * @ingroup tripal_relationships_api
  413. */
  414. function tripal_core_relationships_form_create_relationship_formstate_array($form, &$form_state) {
  415. $form_state['chado_relationships'] = array();
  416. foreach (element_children($form['relationships']['rel_table']) as $type_id) {
  417. if ($type_id != 'new') {
  418. foreach (element_children($form['relationships']['rel_table'][$type_id]) as $rank) {
  419. $element = $form['relationships']['rel_table'][$type_id][$rank];
  420. $rel = array(
  421. 'type_id' => $element['type_id']['#value'],
  422. 'object_id' => $element['object_id']['#value'],
  423. 'subject_id' => $element['subject_id']['#value'],
  424. 'type_name' => $element['type_name']['#markup'],
  425. 'object_name' => $element['object_name']['#markup'],
  426. 'subject_name' => $element['subject_name']['#markup'],
  427. 'rank' => $element['rank']['#markup']
  428. );
  429. $key = $rel['type_id'] . '-' . $rel['rank'];
  430. $form_state['chado_relationships'][$key] = (object) $rel;
  431. }
  432. }
  433. }
  434. }
  435. /**
  436. * Function to theme the add/remove relationships form into a table
  437. *
  438. * @ingroup tripal_relationships_api
  439. */
  440. function theme_tripal_core_relationships_form_table($variables) {
  441. $element = $variables['element'];
  442. $header = array(
  443. 'object_name' => t('Object Unique Name'),
  444. 'type_name' => t('Type'),
  445. 'subject_name' => t('Subject Unique Name'),
  446. 'rank' => t('Rank'),
  447. 'rel_action' => t('Action')
  448. );
  449. $rows = array();
  450. foreach (element_children($element) as $type_id) {
  451. if ($type_id == 'new') {
  452. $row = array();
  453. $row['data'] = array();
  454. foreach ($header as $fieldname => $title) {
  455. if ($fieldname == 'subject_name') {
  456. $row['data'][] = drupal_render($element[$type_id][$fieldname]) . drupal_render($element[$type_id]['subject_is_current']);
  457. }
  458. elseif ($fieldname == 'object_name') {
  459. $row['data'][] = drupal_render($element[$type_id][$fieldname]) . drupal_render($element[$type_id]['object_is_current']);
  460. }
  461. else {
  462. $row['data'][] = drupal_render($element[$type_id][$fieldname]);
  463. }
  464. }
  465. $rows[] = $row;
  466. }
  467. else {
  468. foreach (element_children($element[$type_id]) as $rank) {
  469. $row = array();
  470. $row['data'] = array();
  471. foreach ($header as $fieldname => $title) {
  472. $row['data'][] = drupal_render($element[$type_id][$rank][$fieldname]);
  473. }
  474. $rows[] = $row;
  475. }
  476. }
  477. }
  478. return theme('table', array(
  479. 'header' => $header,
  480. 'rows' => $rows
  481. ));
  482. }
  483. /**
  484. * This function is used in a hook_insert, hook_update for a node form
  485. * when the relationships form has been added to the form. It retrieves all of the relationships
  486. * and returns them in an array of the format:
  487. *
  488. * $relationships[<type_id>][<rank>] = array(
  489. * 'subject_id' => <subject_id>,
  490. * 'object_id' => <object_id>,
  491. * );
  492. *
  493. * This array can then be used for inserting or updating relationships manually
  494. *
  495. * @param $node
  496. *
  497. * @return
  498. * A relationship array
  499. *
  500. * @ingroup tripal_relationships_api
  501. */
  502. function tripal_core_relationships_form_retreive($node) {
  503. $rels = array();
  504. foreach ($node->rel_table as $type_id => $elements) {
  505. if ($type_id != 'new') {
  506. foreach ($elements as $rank => $relationships) {
  507. $rels[$type_id][$rank]['subject_id'] = $relationships['subject_id'];
  508. $rels[$type_id][$rank]['object_id'] = $relationships['object_id'];
  509. }
  510. }
  511. }
  512. return $rels;
  513. }
  514. /**
  515. * This function is used in hook_insert or hook_update and handles inserting of
  516. * relationships between the current nodetype and other memebers of the same nodetype
  517. *
  518. * @param $node
  519. * The node passed into hook_insert & hook_update
  520. * @param $relationship_table
  521. * The name of the _relationship linking table (ie: feature_relationship)
  522. * @param $current_id
  523. * The value of the foreign key (ie: 445, if there exists a feature where feature_id=445)
  524. *
  525. * @ingroup tripal_relationships_api
  526. */
  527. function tripal_core_relationships_form_update_relationships($node, $relationship_table, $current_id) {
  528. // First remove existing relationships links
  529. tripal_core_chado_delete($relationship_table, array('subject_id' => $current_id));
  530. tripal_core_chado_delete($relationship_table, array('object_id' => $current_id));
  531. // Add back in dbxref links and insert dbxrefs as needed
  532. $relationships = tripal_core_relationships_form_retreive($node);
  533. foreach ($relationships as $type_id => $ranks) {
  534. foreach ($ranks as $rank => $element) {
  535. // add relationship
  536. $success_link = tripal_core_chado_insert(
  537. $relationship_table,
  538. array(
  539. 'subject_id' => $element['subject_id'],
  540. 'type_id' => $type_id,
  541. 'object_id' => $element['object_id'],
  542. 'rank' => $rank
  543. )
  544. );
  545. }
  546. }
  547. }