| Versions | |
|---|---|
| 7 | hook_filter_format_disable($format) |
Perform actions when a text format has been disabled.
$format The format object of the format being disabled.
drupal/
<?php
function hook_filter_format_disable($format) {
mymodule_cache_rebuild();
}
?>