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 drupal-7.x/
modules/ rdf/ rdf.test - Test inserting, loading, updating, and deleting RDF mappings.
Archivo
- drupal-7.x/
modules/ rdf/ rdf.module, line 257 - Enables semantically enriched output for Drupal sites in the form of RDFa.
Código
function rdf_mapping_delete($type, $bundle) {
$num_rows = db_delete('rdf_mapping')->condition('type', $type)->condition('bundle', $bundle)->execute();
return (bool) ($num_rows > 0);
}