function tripal_feature_delete_property_by_id

2.x tripal_feature.DEPRECATED.inc tripal_feature_delete_property_by_id($featureprop_id)
3.x tripal_feature.DEPRECATED.inc tripal_feature_delete_property_by_id($featureprop_id)
1.x tripal_feature.api.inc tripal_feature_delete_property_by_id($featureprop_id)

Delete a given feature property using the featureprop_id

Parameters

$featureprop_id: The feature_id of the property to delete

Return value

True of success, False otherwise

Related topics

1 call to tripal_feature_delete_property_by_id()

File

tripal_feature/api/tripal_feature.api.inc, line 404
Provides an application programming interface (API) for working with features

Code

function tripal_feature_delete_property_by_id($featureprop_id) {
  return tripal_core_delete_property_by_id('feature', $featureprop_id);
}