function tripal_pub_get_remote_search_results

2.x tripal_pub.DEPRECATED.inc tripal_pub_get_remote_search_results($remote_db, $search_array, $num_to_retrieve, $page = 0)
3.x tripal_pub.DEPRECATED.inc tripal_pub_get_remote_search_results($remote_db, $search_array, $num_to_retrieve, $page = 0)
1.x tripal_pub.api.inc tripal_pub_get_remote_search_results($remote_db, $search_array, $num_to_retrieve, $pager_id = 0, $page = 0)

Deprecated

Restructured API to make naming more readable and consistent. Function was deprecated in Tripal 2.0 and will be removed 2 releases from now. This function has been replaced by tripal_get_remote_pubs().

See also

tripal_get_remote_pubs().

File

tripal_pub/api/tripal_pub.DEPRECATED.inc, line 102
Wrapper functions to provide backwards compatibility for the tripal analysis api

Code

function tripal_pub_get_remote_search_results($remote_db, $search_array, $num_to_retrieve, $page = 0) {

  tripal_report_error(
  'tripal_deprecated', 
  TRIPAL_NOTICE, 
  "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.", 
  array(
    '%old_function' => 'tripal_pub_get_remote_search_results',
    '%new_function' => 'tripal_get_remote_pubs'
  )
  );

  return tripal_get_remote_pubs($remote_db, $search_array, $num_to_retrieve, $page);
}