| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 | 
							- <?php
 
- /**
 
-  * @file
 
-  * Wrapper functions to provide backwards compatibility for the tripal contact
 
-  *   api
 
-  */
 
- /**
 
-  * @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_get_property().
 
-  *
 
-  * @see chado_get_property().
 
-  */
 
- function tripal_contact_get_property($contact_id, $property) {
 
-   tripal_report_error(
 
-     'tripal_deprecated',
 
-     TRIPAL_NOTICE,
 
-     "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.",
 
-     [
 
-       '%old_function' => 'tripal_contact_get_property',
 
-       '%new_function' => 'chado_get_property',
 
-     ]
 
-   );
 
-   $record = [
 
-     'table' => 'contact',
 
-     'id' => $contact_id,
 
-   ];
 
-   $property = [
 
-     'type_name' => $property,
 
-     'cv_name' => 'contact_property',
 
-   ];
 
-   return chado_get_property($record, $property);
 
- }
 
- /**
 
-  * @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.",
 
-     [
 
-       '%old_function' => 'tripal_contact_insert_property',
 
-       '%new_function' => 'chado_insert_property',
 
-     ]
 
-   );
 
-   $record = [
 
-     'table' => 'contact',
 
-     'id' => $contact_id,
 
-   ];
 
-   $property = [
 
-     'type_name' => $property,
 
-     'cv_name' => 'contact_property',
 
-     'value' => $value,
 
-   ];
 
-   $options = [
 
-     'update_if_present' => $update_if_present,
 
-   ];
 
-   return chado_insert_property($record, $property, $options);
 
- }
 
- /**
 
-  * @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.",
 
-     [
 
-       '%old_function' => 'tripal_contact_update_property',
 
-       '%new_function' => 'chado_update_property',
 
-     ]
 
-   );
 
-   $record = [
 
-     'table' => 'contact',
 
-     'id' => $contact_id,
 
-   ];
 
-   $property = [
 
-     'type_name' => $property,
 
-     'cv_name' => 'contact_property',
 
-     'value' => $value,
 
-   ];
 
-   $options = [
 
-     'insert_if_missing' => $insert_if_missing,
 
-   ];
 
-   return chado_update_property($record, $property, $options);
 
- }
 
- /**
 
-  * @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.",
 
-     [
 
-       '%old_function' => 'tripal_contact_delete_property',
 
-       '%new_function' => 'chado_delete_property',
 
-     ]
 
-   );
 
-   $record = [
 
-     'table' => 'contact',
 
-     'id' => $contact_id,
 
-   ];
 
-   $property = [
 
-     'type_name' => $property,
 
-     'cv_name' => 'contact_property',
 
-   ];
 
-   return chado_delete_property($record, $property);
 
- }
 
- /**
 
-  * @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_insert_contact().
 
-  *
 
-  * @see tripal_insert_contact().
 
-  */
 
- 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.",
 
-     [
 
-       '%old_function' => 'tripal_contact_add_contact',
 
-       '%new_function' => 'tripal_insert_contact',
 
-     ]
 
-   );
 
-   return tripal_insert_contact([
 
-     'name' => $name,
 
-     'description' => $description,
 
-     'type_name' => $type,
 
-     'properties' => $properties,
 
-   ]);
 
- }
 
 
  |