tripal_views.views.inc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. <?php
  2. /**
  3. * @file
  4. * Tripal Views Integration
  5. */
  6. include 'views/handlers/tripal_views_handler_area_action_links.inc';
  7. /**
  8. * Implements hook_views_handlers().
  9. *
  10. * Purpose: Register all custom handlers with views
  11. * where a handler describes either "the type of field",
  12. * "how a field should be filtered", "how a field should be sorted"
  13. *
  14. * @return
  15. * An array of handler definitions
  16. *
  17. * @ingroup tripal_views
  18. */
  19. function tripal_views_views_handlers() {
  20. return array(
  21. 'info' => array(
  22. 'path' => drupal_get_path('module', 'tripal_views') . '/views/handlers',
  23. ),
  24. 'handlers' => array(
  25. // Custom Tripal Field Handlers
  26. /** CANT FIX UNTIL Tripal Feature is working
  27. 'tripal_views_handler_field_sequence' => array(
  28. 'parent' => 'views_handler_field',
  29. ),
  30. */
  31. // Custom area handler
  32. 'tripal_views_handler_area_action_links' => array(
  33. 'parent' => 'views_handler_area',
  34. ),
  35. // Custom Tripal Filter Handlers
  36. 'tripal_views_handler_filter_no_results' => array(
  37. 'parent' => 'views_handler_filter'
  38. ),
  39. 'tripal_views_handler_filter_select_cvterm' => array(
  40. 'parent' => 'tripal_views_handler_filter_select_string',
  41. ),
  42. 'tripal_views_handler_filter_select_id' => array(
  43. 'parent' => 'tripal_views_handler_filter_select_string',
  44. ),
  45. 'tripal_views_handler_filter_select_string' => array(
  46. 'parent' => 'views_handler_filter_string',
  47. ),
  48. 'tripal_views_handler_filter_textarea' => array(
  49. 'parent' => 'views_handler_filter',
  50. ),
  51. 'tripal_views_handler_filter_file_upload' => array(
  52. 'parent' => 'views_handler_filter',
  53. ),
  54. /** D7 @todo: get handlers working
  55. */
  56. /** CANT FIX UNTIL Tripal Feature is working
  57. 'tripal_views_handler_filter_sequence' => array(
  58. 'parent' => 'chado_views_handler_filter_string',
  59. ),
  60. */
  61. ),
  62. );
  63. }
  64. /**
  65. * Implements hook_views_pre_render().
  66. *
  67. * Purpose: Intercepts the view after the query has been executed
  68. * All the results are stored in $view->result
  69. * Looking up the NID here ensures the query is only executed once
  70. * for all stocks in the table.
  71. *
  72. * @ingroup tripal_views
  73. */
  74. function tripal_views_views_pre_render(&$view) {
  75. // We need to unset the exposed_input for the view so we can repopulate that
  76. // variable. This is necessary if we're using the file_upload_combo
  77. // custom form element which adds the file_path variable to the $_GET after the
  78. // view has populated the $view->exposed_input variable
  79. unset($view->exposed_input);
  80. // Add css if tripal admin tagged view
  81. if ($view->tag == 'tripal admin') {
  82. $tripal_admin_view_css = drupal_get_path('module', 'tripal_views') . '/theme/css/tripal_views_admin_views.css';
  83. drupal_add_css($tripal_admin_view_css);
  84. }
  85. }
  86. /**
  87. * Implements hook_views_data().
  88. *
  89. * Generates a dynamic data array for Views
  90. *
  91. * This function is a hook used by the Views module. It populates and
  92. * returns a data array that specifies for the Views module the base table,
  93. * the tables it joins with and handlers. The data array is populated
  94. * using the data stored in the tripal_views tables.
  95. *
  96. * @return a data array formatted for the Views module
  97. *
  98. * D7 @todo: Add support for materialized views relationships using the new method
  99. *
  100. * @ingroup tripal_views
  101. */
  102. function tripal_views_views_data() {
  103. $data = array();
  104. // Manually integrate the drupal.tripal_views* tables
  105. $data = tripal_views_views_data_tripal_views_tables($data);
  106. // MAKE SURE ALL CHADO TABLES ARE INTEGRATED
  107. tripal_views_integrate_all_chado_tables();
  108. // DEFINE GLOBAL FIELDS
  109. // Filter handler that lets the admin say:
  110. // "Show no results until they enter search parameters"
  111. $data['views']['search_results'] = array(
  112. 'title' => t('Delay Results'),
  113. 'help' => t('Delay results until Apply/Search is clicked by the user.'),
  114. 'filter' => array(
  115. 'handler' => 'tripal_views_handler_filter_no_results',
  116. ),
  117. );
  118. $data['views']['action_links_area'] = array(
  119. 'title' => t('Action Links'),
  120. 'help' => t('Add action links to the view.'),
  121. 'area' => array(
  122. 'handler' => 'tripal_views_handler_area_action_links',
  123. ),
  124. );
  125. $tvi_query = db_query('SELECT * FROM {tripal_views}');
  126. // INTEGRATE THE LIGHTEST SETUP FOR EACH TABLE
  127. foreach ($tvi_query as $tvi_row) {
  128. // check to see if this is the lightest (drupal-style) priority setup for this table
  129. // if not then don't use this definition
  130. $lightest_priority_setup = tripal_is_lightest_priority_setup($tvi_row->setup_id, $tvi_row->table_name);
  131. if (!$lightest_priority_setup) {
  132. continue;
  133. }
  134. // ids we'll use for queries
  135. $setup_id = $tvi_row->setup_id;
  136. $mview_id = $tvi_row->mview_id;
  137. // holds the base table name and fields
  138. $base_table = '';
  139. $base_fields = array();
  140. // indicated whether the current table is a base table or not
  141. $is_base_table = $tvi_row->base_table;
  142. // POPULATE THE BASE TABLE NAME AND FIELDS
  143. // If an $mview_id is given then get the materialized view info,
  144. // otherwise get the Chado table info
  145. if ($mview_id) {
  146. // get the base table name from the materialized view
  147. // D7 TODO: Check DBTNG changes work
  148. $sql = "SELECT name, mv_specs FROM {tripal_mviews} WHERE mview_id = :id";
  149. $mview_table = db_query($sql, array(':id' => $mview_id));
  150. $mview_table = $mview_table->fetchObject();
  151. $base_table = $mview_table->name;
  152. // get the columns in this materialized view. They are separated by commas
  153. // where the first word is the column name and the rest is the type
  154. $columns = explode(",", $mview_table->mv_specs);
  155. foreach ($columns as $column) {
  156. $column = trim($column); // trim trailing and leading spaces
  157. preg_match("/^(.*?)\ (.*?)$/", $column, $matches);
  158. $column_name = $matches[1];
  159. $column_type = $matches[2];
  160. $base_fields[$column_name] = array(
  161. 'column_name' => $column_name,
  162. 'type' => $column_type,
  163. );
  164. }
  165. // get the field name and descriptions
  166. // D7 TODO: Check DBTNG changes work
  167. $sql = "SELECT * FROM {tripal_views_field} WHERE setup_id=:setup";
  168. $query = db_query($sql, array(':setup' => $setup_id));
  169. foreach($query as $field) {
  170. $base_fields[$field->column_name]['name'] = $field->name;
  171. $base_fields[$field->column_name]['help'] = $field->description;
  172. }
  173. }
  174. // if this is not a legacy materialized view
  175. else {
  176. $base_table = $tvi_row->table_name;
  177. // get the table description
  178. $table_desc = chado_get_schema($base_table);
  179. $fields = $table_desc['fields'];
  180. if (!is_array($fields)) {
  181. $fields = array();
  182. }
  183. foreach ($fields as $column => $attrs) {
  184. $base_fields[$column] = array(
  185. 'column_name' => $column,
  186. 'type' => $attrs['type'],
  187. );
  188. }
  189. // get the field name and descriptions
  190. $sql = "SELECT * FROM {tripal_views_field} WHERE setup_id=:setup";
  191. $query = db_query($sql, array(':setup' => $setup_id));
  192. foreach ($query as $field) {
  193. $base_fields[$field->column_name]['name'] = $field->name;
  194. $base_fields[$field->column_name]['help'] = $field->description;
  195. }
  196. }
  197. // SETUP THE BASE TABLE INFO IN THE DATA ARRAY
  198. $data[$base_table]['table']['group'] = t("$tvi_row->name");
  199. if ($is_base_table) {
  200. $data[$base_table]['table']['base'] = array(
  201. 'group' => "$tvi_row->name",
  202. 'title' => "$tvi_row->name",
  203. 'help' => $tvi_row->comment,
  204. 'search_path' => 'chado'
  205. );
  206. }
  207. else {
  208. $data[$base_table]['table'] = array(
  209. 'group' => "$tvi_row->name",
  210. 'title' => "$tvi_row->name",
  211. 'help' => $tvi_row->comment,
  212. 'search_path' => 'chado'
  213. );
  214. }
  215. // ADD THE FIELDS TO THE DATA ARRAY
  216. foreach ($base_fields as $column_name => $base_field) {
  217. if (!isset($base_field['name'])) {
  218. $data[$base_table][$column_name] = array(
  219. 'title' => t($column_name),
  220. 'help' => t($column_name),
  221. 'field' => array(
  222. 'click sortable' => TRUE,
  223. ),
  224. );
  225. tripal_report_error(
  226. 'tripal_views',
  227. TRIPAL_WARNING,
  228. "The name and help were not set for %table.%column. As a consequence the column
  229. name has been used... You should ensure that the 'name' and 'help' keys for
  230. this field are set in the integration array (priority = %priority)",
  231. array(
  232. '%table'=> $base_table,
  233. '%column' => $column_name,
  234. '%priority' => $tvi_row->priority
  235. )
  236. );
  237. }
  238. else {
  239. $data[$base_table][$column_name] = array(
  240. 'title' => t($base_field['name']),
  241. 'help' => t($base_field['help']),
  242. 'field' => array(
  243. 'click sortable' => TRUE,
  244. ),
  245. );
  246. }
  247. // now add the handlers
  248. $sql = "SELECT * FROM {tripal_views_handlers} WHERE setup_id = :setup AND column_name = :column";
  249. $handlers = db_query($sql, array(':setup' => $setup_id, ':column' => $column_name));
  250. $num_handlers = 0;
  251. foreach ($handlers as $handler) {
  252. $num_handlers++;
  253. $data[$base_table][$column_name][$handler->handler_type]['handler'] = $handler->handler_name;
  254. // Add in any additional arguments
  255. // This should be a serialized array including (at a minimum) name => <handler name>
  256. if ($handler->arguments) {
  257. $data[$base_table][$column_name][$handler->handler_type] = array_merge($data[$base_table][$column_name][$handler->handler_type], unserialize($handler->arguments));
  258. }
  259. };
  260. // If there were no handlers applied to the current field then warn the administrator!
  261. if ($num_handlers == 0) {
  262. tripal_report_error(
  263. 'tripal_views',
  264. TRIPAL_WARNING,
  265. "No handlers were registered for %table.%column. This means there is no views
  266. functionality for this column. To register handlers, make sure the 'handlers'
  267. key for this field is set in the integration array (priority = %priority).
  268. The supported keys include 'field', 'filter', 'sort', 'relationship'. Look
  269. at the tripal_add_views_integration() for additional details.",
  270. array(
  271. '%table'=> $base_table,
  272. '%column' => $column_name,
  273. '%priority' => $tvi_row->priority
  274. )
  275. );
  276. }
  277. }
  278. // ADD JOINS & RELATIONSHIPS TO DATA ARRAY
  279. // only add joins if this is a base table
  280. // this keeps the list of available fields manageable
  281. // all other tables should be added via relationships
  282. $sql = "SELECT * FROM {tripal_views_join} WHERE setup_id = :setup";
  283. $joins = db_query($sql, array(':setup' => $setup_id));
  284. if (!isset($joins)) {
  285. $joins = array();
  286. }
  287. foreach ($joins as $join) {
  288. $left_table = $join->left_table;
  289. $left_field = $join->left_field;
  290. $base_table = $join->base_table;
  291. $base_field = $join->base_field;
  292. $handler = $join->handler;
  293. $base_title = ucwords(str_replace('_', ' ', $base_table));
  294. $left_title = ucwords(str_replace('_', ' ', $left_table));
  295. // if the 'node' table is in our integrated list then
  296. // we want to skip it. It shouldn't be there.
  297. if ($left_table == 'node') {
  298. continue;
  299. }
  300. // add join entry
  301. if (!$join->relationship_only) {
  302. $data[$left_table]['table']['join'][$base_table] = array(
  303. 'left_field' => $base_field,
  304. 'field' => $left_field,
  305. );
  306. if ($handler) {
  307. $data[$left_table]['table']['join'][$base_table]['handler'] = $handler;
  308. }
  309. if (!empty($join->arguments)) {
  310. array_merge($data[$left_table]['table']['join'][$base_table], unserialize($join->arguments));
  311. }
  312. }
  313. // warn if deprecated method of relationship addition was used (ie: through handlers)
  314. if (isset($data[$base_table][$base_field]['relationship'])) {
  315. tripal_report_error('tripal_views', TRIPAL_NOTICE,
  316. 'DEPRECATED: Currently using tripal_views_handlers to store relationship for %base => %left when you should be using tripal_views_joins.',
  317. array('%base' => $base_table, '%left' => $left_table));
  318. }
  319. // Add relationship entry.
  320. // NOTE: we use a fake field name to allow us to have multiple
  321. // relationships for the same field (ie: feature.feature_id has many
  322. // Many relationships but views only supports a single one).
  323. $fake_field = $base_field . '_to_' . $left_table;
  324. // Bug Fix: The old $fake_field used above doesn't take into account
  325. // multiple relationships to the same left table. To keep backwards
  326. // compatibility, this old fake_field needs to continue to be used for
  327. // the LAST recorded relationship. However, for all previously set
  328. // relationships we can use an improved fake name which takes into
  329. // account the left field and ensures all relationships for a single
  330. // left table are not condensed into a single relationship.
  331. if (array_key_exists($fake_field, $data[$base_table])) {
  332. // Again, note that we can't just change the fake_name after finding
  333. // there is more than one relationship because then the FIRST
  334. // relationship would keep the old fake_name rather than the LAST
  335. // which keeps backwards compatiblity since the old naming caused all
  336. // previous relationships be be overridden by the next one.
  337. // Thus we first need to determine the left field of the previous
  338. // join for this table combination and then use that to form our
  339. // improved fake field.
  340. $previous_left_field = $data[$base_table][$fake_field]['relationship']['base field'];
  341. $improved_fake_field = $base_field . '_to_' . $left_table . "." . $previous_left_field;
  342. $data[$base_table][$improved_fake_field] = $data[$base_table][$fake_field];
  343. }
  344. $data[$base_table][$fake_field] = array(
  345. 'title' => "$base_title.$base_field => $left_title.$left_field",
  346. 'help' => t("Joins @base to @left", array('@base' => "$base_title.$base_field", '@left' => "$left_title.$left_field")),
  347. 'relationship' => array(
  348. 'handler' => $join->relationship_handler,
  349. 'title' => t("$base_field => $left_title ($left_field)"),
  350. 'label' => t("$base_field => $left_title ($left_field)"),
  351. 'real field' => $base_field,
  352. 'base' => $left_table,
  353. 'base field' => $left_field
  354. )
  355. );
  356. if (!empty($join->arguments)) {
  357. array_merge($data[$base_table][$fake_field]['relationship'], unserialize($join->arguments));
  358. }
  359. }
  360. }
  361. return $data;
  362. }
  363. /**
  364. * Describes the tripal views integration tables to views for the administration views
  365. *
  366. * @ingroup tripal_views
  367. */
  368. function tripal_views_views_data_tripal_views_tables($data) {
  369. $data['tripal_views']['table']['group'] = t('Tripal Views Integration');
  370. $data['tripal_views']['table']['base'] = array(
  371. 'field' => 'setup_id', // This is the identifier field for the view.
  372. 'title' => t('Tripal Views Integration'),
  373. 'help' => t('Specifications on how to integrate various tables with Drupal Views'),
  374. 'weight' => -10,
  375. );
  376. // Implicit Join to Materialized Views
  377. $data['tripal_views']['table']['join'] = array(
  378. 'tripal_mviews' => array(
  379. 'left_field' => 'mview_id',
  380. 'field' => 'mview_id',
  381. ),
  382. );
  383. // setup_id
  384. $data['tripal_views']['setup_id'] = array(
  385. 'title' => t('Setup ID'),
  386. 'help' => t('Primary key of the integration'),
  387. 'field' => array(
  388. 'handler' => 'views_handler_field_numeric',
  389. 'click sortable' => TRUE,
  390. ),
  391. 'filter' => array(
  392. 'handler' => 'views_handler_filter_numeric',
  393. ),
  394. 'sort' => array(
  395. 'handler' => 'views_handler_sort',
  396. ),
  397. );
  398. // mview_id
  399. $data['tripal_views']['mview_id'] = array(
  400. 'title' => t('Materialized View ID'),
  401. 'help' => t('The primary key of the Mview integrated.'),
  402. 'field' => array(
  403. 'handler' => 'views_handler_field_numeric',
  404. 'click sortable' => TRUE,
  405. ),
  406. 'filter' => array(
  407. 'handler' => 'views_handler_filter_numeric',
  408. ),
  409. 'sort' => array(
  410. 'handler' => 'views_handler_sort',
  411. ),
  412. );
  413. // base_table
  414. $data['tripal_views']['base_table'] = array(
  415. 'title' => t('Base Table?'),
  416. 'help' => t('Whether the table being integrated should be considered a base table.'),
  417. 'field' => array(
  418. 'handler' => 'views_handler_field_boolean',
  419. 'click sortable' => TRUE,
  420. ),
  421. 'filter' => array(
  422. 'handler' => 'views_handler_filter_boolean_operator',
  423. 'label' => t('Base Table?'),
  424. 'type' => 'yes-no',
  425. 'use equal' => TRUE,
  426. ),
  427. 'sort' => array(
  428. 'handler' => 'views_handler_sort',
  429. ),
  430. );
  431. // table_name
  432. $data['tripal_views']['table_name'] = array(
  433. 'title' => t('Chado Table Name'),
  434. 'help' => t('The name of the table being integrated'),
  435. 'field' => array(
  436. 'handler' => 'views_handler_field',
  437. 'click sortable' => TRUE, // This is use by the table display plugin.
  438. ),
  439. 'sort' => array(
  440. 'handler' => 'views_handler_sort',
  441. ),
  442. 'filter' => array(
  443. 'handler' => 'views_handler_filter_string',
  444. ),
  445. 'argument' => array(
  446. 'handler' => 'views_handler_argument_string',
  447. ),
  448. );
  449. // priority
  450. $data['tripal_views']['priority'] = array(
  451. 'title' => t('Priority'),
  452. 'help' => t('The priority of the integration.'),
  453. 'field' => array(
  454. 'handler' => 'views_handler_field_numeric',
  455. 'click sortable' => TRUE,
  456. ),
  457. 'filter' => array(
  458. 'handler' => 'views_handler_filter_numeric',
  459. ),
  460. 'sort' => array(
  461. 'handler' => 'views_handler_sort',
  462. ),
  463. );
  464. // name
  465. $data['tripal_views']['name'] = array(
  466. 'title' => t('Name'),
  467. 'help' => t('The name of the integration'),
  468. 'field' => array(
  469. 'handler' => 'views_handler_field',
  470. 'click sortable' => TRUE, // This is use by the table display plugin.
  471. ),
  472. 'sort' => array(
  473. 'handler' => 'views_handler_sort',
  474. ),
  475. 'filter' => array(
  476. 'handler' => 'views_handler_filter_string',
  477. ),
  478. 'argument' => array(
  479. 'handler' => 'views_handler_argument_string',
  480. ),
  481. );
  482. // comment
  483. $data['tripal_views']['comment'] = array(
  484. 'title' => t('Description'),
  485. 'help' => t('Short description or comment about this integration.'),
  486. 'field' => array(
  487. 'handler' => 'views_handler_field',
  488. 'click sortable' => TRUE, // This is use by the table display plugin.
  489. ),
  490. 'sort' => array(
  491. 'handler' => 'views_handler_sort',
  492. ),
  493. 'filter' => array(
  494. 'handler' => 'views_handler_filter_string',
  495. ),
  496. 'argument' => array(
  497. 'handler' => 'views_handler_argument_string',
  498. ),
  499. );
  500. return $data;
  501. }
  502. /**
  503. * Implements hook_views_data_alter().
  504. * Used to add Chado <-> Node Joins & Relationships
  505. * since you need to add to the $data['node'] to do this
  506. *
  507. * @ingroup tripal_views
  508. */
  509. function tripal_views_views_data_alter(&$data) {
  510. // ADD IN NODE JOINS & RELATIONSHIPS
  511. // D7 @todo: Create custom handler to allow join from Node => Base (ie: organism)
  512. // with the addition of a single relationship
  513. // D7 @todo: Create custom handler to allow join from Base (ie: organism)
  514. // with the addition of a single relationship
  515. // D7 @todo: Add support for Mview <-> Node joins and relationships
  516. $tvi_query = db_query('SELECT * FROM {tripal_views} WHERE base_table=1');
  517. foreach ($tvi_query as $tvi_row) {
  518. //ids we'll use for queries
  519. $setup_id = $tvi_row->setup_id;
  520. $base_table = $tvi_row->table_name;
  521. $linker_table = 'chado_' . $base_table;
  522. $base_title = ucwords(str_replace('_', ' ', $base_table));
  523. // add in joins to the node tables if the Chado schema is local
  524. if (chado_is_local()) {
  525. // if a node linking table exists then add in the joins
  526. if (db_table_exists($linker_table)) {
  527. // Adds content (node) fields to chado base table field lists automatically
  528. $data['node']['table']['join'][$linker_table] = array(
  529. 'left_field' => 'nid',
  530. 'field' => 'nid',
  531. );
  532. $data[$linker_table]['table']['join'][$base_table] = array(
  533. 'left_field' => $base_table . '_id',
  534. 'field' => $base_table . '_id',
  535. );
  536. $data['node']['table']['join'][$base_table] = array(
  537. 'left_table' => $linker_table,
  538. 'left_field' => 'nid',
  539. 'field' => 'nid',
  540. );
  541. // Adds in a chado base table => node relationship
  542. // This allows controlled joining to multiple nodes per line
  543. // Use Case: link to feature and organism nodes on a feature listing
  544. // D7 todo: a custom relationship handler to get from feature.organism_id => organism node
  545. // without 1st needing to add relationship to organism table
  546. $base_field = $base_table . '_id';
  547. $data[$linker_table][$base_field] = array(
  548. 'group' => $base_title,
  549. 'title' => $base_title . 'Node',
  550. 'help' => t("Links @base_title to it's node.", array('@base_title' => $base_title)),
  551. 'relationship' => array(
  552. 'handler' => 'views_handler_relationship',
  553. 'title' => t("@base_title => Node", array('@base_title' => $base_title)),
  554. 'label' => t("@base_title => Node", array('@base_title' => $base_title)),
  555. 'real field' => 'nid',
  556. 'base' => 'node',
  557. 'base field' => 'nid'
  558. ),
  559. );
  560. // Add Chado fields to a node-based view
  561. // This will only be done with relationships
  562. $base_field = $base_table . '_id';
  563. $data['node'][$base_field] = array(
  564. 'group' => $base_title,
  565. 'title' => $base_title,
  566. 'help' => t("Links node to chado @base_title.", array('@base_title' => $base_title)),
  567. 'relationship' => array(
  568. 'handler' => 'views_handler_relationship',
  569. 'title' => t("Node => @base_title", array('@base_title' => $base_title)),
  570. 'label' => t("Node => @base_title", array('@base_title' => $base_title)),
  571. 'real field' => 'nid',
  572. 'base' => $linker_table,
  573. 'base field' => 'nid'
  574. ),
  575. );
  576. }
  577. }
  578. }
  579. return $data;
  580. }
  581. /**
  582. * Implementation of hook_views_pre_view().
  583. *
  584. * Merge the $_GET and $_POST into the $_GET. This is because
  585. * Views and Views Data Export modules only uses the $_GET variable but
  586. * file uploads require $_POST. We need to make sure these two modules
  587. * have access to everything needed for this view to work properly.
  588. *
  589. * @ingroup tripal_views
  590. */
  591. function tripal_views_views_pre_view(&$view, &$display_id, &$args) {
  592. $_GET = array_merge($_GET, $_POST);
  593. }