function rdf_mapping_delete in Drupal 7
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 - Enables semantically enriched output for Drupal sites in the form of RDFa.
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);
}