| Versions | |
|---|---|
| 7 | hook_filter_format_update($format) |
Perform actions when a text format has been updated.
This hook allows modules to act when a text format has been updated in any way. For example, when filters have been reconfigured, disabled, or re-arranged in the text format.
$format The format object of the format being updated.
drupal/
<?php
function hook_filter_format_update($format) {
mymodule_cache_rebuild();
}
?>