tripal_chado_views.views.inc 23 KB

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