function tripal_stock_delete_property
1.x tripal_stock-properties.inc | tripal_stock_delete_property($stockprop_id) |
Related topics
1 call to tripal_stock_delete_property()
- tripal_stock_edit_ALL_properties_form_submit in tripal_stock/
includes/ tripal_stock-properties.inc
File
- tripal_stock/
includes/ tripal_stock-properties.inc, line 341 - @todo Add file header description
Code
function tripal_stock_delete_property($stockprop_id) {
chado_query(
"DELETE FROM {stockprop} WHERE stockprop_id=%d",
$stockprop_id
);
}