'tripal_contact_get_property', '%new_function' => 'chado_get_property' ) ); return chado_get_property('contact', $contact_id, $property, 'tripal_contact');; } /** * @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_insert_property(). * * @see chado_insert_property(). */ function tripal_contact_insert_property($contact_id, $property, $value, $update_if_present = 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_contact_insert_property', '%new_function' => 'chado_insert_property' ) ); return chado_insert_property('contact', $contact_id, $property, 'tripal_contact', $value, $update_if_present); } /** * @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_update_property(). * * @see chado_update_property(). */ function tripal_contact_update_property($contact_id, $property, $value, $insert_if_missing = 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_contact_update_property', '%new_function' => 'chado_update_property' ) ); return chado_update_property('contact', $contact_id, $property, 'tripal_contact', $value, $insert_if_missing); } /** * @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_delete_property(). * * @see chado_delete_property(). */ function tripal_contact_delete_property($contact_id, $property) { tripal_report_error( 'tripal_deprecated', TRIPAL_NOTICE, "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.", array( '%old_function'=>'tripal_contact_delete_property', '%new_function' => 'chado_delete_property' ) ); return chado_delete_property('contact', $contact_id, $property, 'tripal_contact'); } /** * @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 contact_insert(). * * @see contact_insert(). */ function tripal_contact_add_contact($name, $description, $type, $properties) { tripal_report_error( 'tripal_deprecated', TRIPAL_NOTICE, "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.", array( '%old_function'=>'tripal_contact_add_contact', '%new_function' => 'contact_insert' ) ); return contact_insert(array( 'name' => $name, 'description' => $description, 'type_name' => $type, 'properties' => $properties )); }