tripal_organism.views.inc 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /**
  3. * @file
  4. * This file contains the basic functions for views integration of
  5. * chado/tripal organism tables. Supplementary functions can be found in
  6. * ./views/
  7. *
  8. * Documentation on views integration can be found at
  9. * http://views2.logrus.com/doc/html/index.html.
  10. */
  11. /*************************************************************************
  12. * Implements hook_views_data()
  13. * Purpose: Describe chado/tripal tables & fields to views
  14. * @return: a data array which follows the structure outlined in the
  15. * views2 documentation for this hook. Essentially, it's an array of table
  16. * definitions keyed by chado/tripal table name. Each table definition
  17. * includes basic details about the table, fields in that table and
  18. * relationships between that table and others (joins)
  19. */
  20. require_once('views/organism.views.inc');
  21. function tripal_organism_views_data() {
  22. $data = array();
  23. $data = array_merge($data, retrieve_organism_views_data());
  24. return $data;
  25. }
  26. /*************************************************************************
  27. * Implements hook_views_handlers()
  28. * Purpose: Register all custom handlers with views
  29. * where a handler describes either "the type of field",
  30. * "how a field should be filtered", "how a field should be sorted"
  31. * @return: An array of handler definitions
  32. */
  33. function tripal_organism_views_handlers() {
  34. return array(
  35. 'info' => array(
  36. 'path' => drupal_get_path('module', 'tripal_organism') . '/views/handlers',
  37. ),
  38. 'handlers' => array(
  39. 'views_handler_field_computed_nid' => array(
  40. 'parent' => 'views_handler_field_numeric',
  41. ),
  42. ),
  43. );
  44. }
  45. /**
  46. * Implements hook_views_pre_render
  47. * Purpose: Intercepts the view after the query has been executed
  48. * All the results are stored in $view->result
  49. * Looking up the NID here ensures the query is only executed once
  50. * for all organisms in the table.
  51. *
  52. * @todo add if !<chado/drupal same db> around NID portion
  53. */
  54. function tripal_organism_views_pre_render (&$view) {
  55. if (preg_match('/organism/', $view->base_table)) {
  56. // retrieve the organism_id for each record in the views current page
  57. $organism_ids = array();
  58. foreach ($view->result as $row_num => $row) {
  59. $organism_ids[$row_num] = $row->organism_id;
  60. }
  61. // Using the list of organism_ids from the view
  62. // lookup the NIDs from drupal
  63. // and add that to the results of the view
  64. $sql = "SELECT nid, organism_id FROM chado_organism WHERE organism_id IN (".implode(',',$organism_ids).")";
  65. $resource = db_query($sql);
  66. while ($r = db_fetch_object($resource)) {
  67. $key = array_search($r->organism_id, $organism_ids);
  68. $view->result[$key]->nid = $r->nid;
  69. }
  70. }
  71. }