function tripal_library_get_property
2.x tripal_library.DEPRECATED.inc | tripal_library_get_property($library_id, $property) |
3.x tripal_library.DEPRECATED.inc | tripal_library_get_property($library_id, $property) |
1.x tripal_library.api.inc | tripal_library_get_property($library_id, $property) |
Retrieve properties of a given type for a given library
Parameters
$library_id: The library_id of the properties you would like to retrieve
$property: The cvterm name of the properties to retrieve
Return value
An library chado variable with the specified properties expanded
Related topics
1 call to tripal_library_get_property()
- chado_library_form in tripal_library/
tripal_library.module - When editing or creating a new node of type 'chado_library' we need a form. This function creates the form that will be used for this.
File
- tripal_library/
api/ tripal_library.api.inc, line 23 - Provides an application programming interface (API) to manage libraries
Code
function tripal_library_get_property($library_id, $property) {
return tripal_core_get_property('library', $library_id, $property, 'tripal');
}