filter_format_delete($format)Delete a text format.
$format The text format object to be deleted.
modules/filter/filter.module, line 263
<?php
function filter_format_delete($format) {
db_delete('filter_format')
->condition('format', $format->format)
->execute();
db_delete('filter')
->condition('format', $format->format)
->execute();
// Allow modules to react on text format deletion.
$fallback = filter_format_load(filter_fallback_format());
module_invoke_all('filter_format_delete', $format, $fallback);
filter_formats_reset();
cache_clear_all($format->format . ':', 'cache_filter', TRUE);
}
?>