hook_filter_format_update

Versions
mediamosa-21
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.

See also

hook_filter_format_insert().

@see hook_filter_format_delete().

Parameters

$format The format object of the format being updated.

Related topics

Code

modules/filter/filter.api.php, line 230

<?php
function hook_filter_format_update($format) {
  mymodule_cache_rebuild();
}
?>