function tripal_pub_add_pub_dbxref
2.x tripal_pub.DEPRECATED.inc | tripal_pub_add_pub_dbxref($pub_id, $pub_dbxref) |
3.x tripal_pub.DEPRECATED.inc | tripal_pub_add_pub_dbxref($pub_id, $pub_dbxref) |
1.x tripal_pub.api.inc | tripal_pub_add_pub_dbxref($pub_id, $pub_dbxref) |
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_associate_dbxref().
See also
File
- tripal_pub/
api/ tripal_pub.DEPRECATED.inc, line 234 - Wrapper functions to provide backwards compatibility for the tripal analysis api
Code
function tripal_pub_add_pub_dbxref($pub_id, $pub_dbxref) {
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_add_pub_dbxref',
'%new_function' => 'tripal_associate_dbxref'
)
);
$dbxref = array();
if (preg_match('/^(.*?):(.*?)$/', trim($pub_dbxref), $matches)) {
$dbxref['db_name'] = $matches[1];
$dbxref['accession'] = $matches[2];
}
return tripal_associate_dbxref('pub', $pub_id, $dbxref);
}