function tripal_library_delete_property
2.x tripal_library.DEPRECATED.inc | tripal_library_delete_property($library_id, $property) |
3.x tripal_library.DEPRECATED.inc | tripal_library_delete_property($library_id, $property) |
1.x tripal_library.api.inc | tripal_library_delete_property($library_id, $property) |
Delete a given property
Parameters
$library_id: The library_id of the property to delete
$property: The cvterm name of the property to delete
Note: The property will be identified using the unique combination of the $library_id and $property and then it will be deleted
Return value
True of success, False otherwise
Related topics
File
- tripal_library/
api/ tripal_library.api.inc, line 87 - Provides an application programming interface (API) to manage libraries
Code
function tripal_library_delete_property($library_id, $property) {
return tripal_core_delete_property('library', $library_id, $property, 'tripal');
}