function rdf_mapping_delete
Deletes the mapping for the given bundle from the database.
Parameters
$type: The entity type the mapping refers to.
$bundle: The bundle the mapping refers to.
Return value
Return boolean TRUE if mapping deleted, FALSE if not.
Related topics
1 call to rdf_mapping_delete()
- RdfCrudTestCase::testCRUD in modules/
rdf/ rdf.test - Test inserting, loading, updating, and deleting RDF mappings.
File
-
modules/
rdf/ rdf.module, line 273
Code
function rdf_mapping_delete($type, $bundle) {
$num_rows = db_delete('rdf_mapping')->condition('type', $type)
->condition('bundle', $bundle)
->execute();
return (bool) ($num_rows > 0);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.