function tripal_pub_import_by_dbxref
2.x tripal_pub.DEPRECATED.inc | tripal_pub_import_by_dbxref($pub_dbxref, $do_contact = FALSE, $do_update) |
3.x tripal_pub.DEPRECATED.inc | tripal_pub_import_by_dbxref($pub_dbxref, $do_contact = FALSE, $do_update) |
1.x tripal_pub.api.inc | tripal_pub_import_by_dbxref($pub_dbxref, $do_contact = FALSE, $do_update) |
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 chado_import_multiple_publications().
See also
chado_import_multiple_publications().
File
- tripal_pub/
api/ tripal_pub.DEPRECATED.inc, line 212 - Wrapper functions to provide backwards compatibility for the tripal analysis api
Code
function tripal_pub_import_by_dbxref($pub_dbxref, $do_contact = FALSE, $do_update) {
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_import_by_dbxref',
'%new_function' => 'chado_import_multiple_publications'
)
);
return tripal_import_pub_by_dbxref($pub_dbxref, $do_contact, $do_udpate);
}